aboutsummaryrefslogtreecommitdiff
path: root/src/interfaces/libpq/pthread-win32.c
diff options
context:
space:
mode:
authorMagnus Hagander <magnus@hagander.net>2007-04-18 08:32:40 +0000
committerMagnus Hagander <magnus@hagander.net>2007-04-18 08:32:40 +0000
commit5574c9f3a5d4ec8432cee5a10949b82929308eed (patch)
tree7978985dc1af1d7d413856bafbc3b5acf45b424c /src/interfaces/libpq/pthread-win32.c
parentc2284489106f6d2d0a9a2d2b84fe0baadab97ed4 (diff)
downloadpostgresql-5574c9f3a5d4ec8432cee5a10949b82929308eed.tar.gz
postgresql-5574c9f3a5d4ec8432cee5a10949b82929308eed.zip
Silence mingw compiler warning
Diffstat (limited to 'src/interfaces/libpq/pthread-win32.c')
-rw-r--r--src/interfaces/libpq/pthread-win32.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interfaces/libpq/pthread-win32.c b/src/interfaces/libpq/pthread-win32.c
index faab4efae3e..4aa770b80be 100644
--- a/src/interfaces/libpq/pthread-win32.c
+++ b/src/interfaces/libpq/pthread-win32.c
@@ -5,7 +5,7 @@
*
* Copyright (c) 2004-2007, PostgreSQL Global Development Group
* IDENTIFICATION
-* $PostgreSQL: pgsql/src/interfaces/libpq/pthread-win32.c,v 1.13 2007/01/05 22:20:01 momjian Exp $
+* $PostgreSQL: pgsql/src/interfaces/libpq/pthread-win32.c,v 1.14 2007/04/18 08:32:40 mha Exp $
*
*-------------------------------------------------------------------------
*/
@@ -16,7 +16,7 @@
#include "pthread-win32.h"
DWORD
-pthread_self()
+pthread_self(void)
{
return GetCurrentThreadId();
}