1
0
mirror of https://github.com/postgres/postgres.git synced 2025-08-31 17:02:12 +03:00

Make ECPG regression tests run with -c only for array_of_struct.pgc

on MSVC.

Fix strange nonstandard version of __stdcall specifyer in thread
tests on win32.
This commit is contained in:
Magnus Hagander
2007-10-03 11:57:36 +00:00
parent ebade3f5bf
commit 6ddbc1164d
7 changed files with 10 additions and 7 deletions

View File

@@ -121,7 +121,7 @@ struct sqlca_t *ECPGget_sqlca(void);
#ifdef WIN32
static unsigned STDCALL fn(void* arg)
static unsigned __stdcall fn(void* arg)
#else
static void* fn(void* arg)
#endif