diff options
author | Greg Stark <stark@mit.edu> | 2011-03-27 21:31:41 +0100 |
---|---|---|
committer | Greg Stark <stark@mit.edu> | 2011-03-27 21:31:41 +0100 |
commit | 7b66e2c086b1a24d8adad52842725db8c0499e02 (patch) | |
tree | b042aa52e8c28d087e23b3ed36d1a1a8cfc06f9c /src/interfaces/ecpg/include/ecpglib.h | |
parent | d0dd5c73527d4adc11211bd6ad43e3be121842f9 (diff) | |
download | postgresql-7b66e2c086b1a24d8adad52842725db8c0499e02.tar.gz postgresql-7b66e2c086b1a24d8adad52842725db8c0499e02.zip |
fix up a couple non-prototypes of the form foo() to be foo(void) -- found using -Wstrict-prototypes
Diffstat (limited to 'src/interfaces/ecpg/include/ecpglib.h')
-rw-r--r-- | src/interfaces/ecpg/include/ecpglib.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interfaces/ecpg/include/ecpglib.h b/src/interfaces/ecpg/include/ecpglib.h index 21b64d5d382..3b8ed4c4b03 100644 --- a/src/interfaces/ecpg/include/ecpglib.h +++ b/src/interfaces/ecpg/include/ecpglib.h @@ -92,7 +92,7 @@ void *ECPGget_var(int number); void ECPGfree_auto_mem(void); #ifdef ENABLE_THREAD_SAFETY -void ecpg_pthreads_init(); +void ecpg_pthreads_init(void); #endif #ifdef __cplusplus |