diff options
Diffstat (limited to 'src/include/utils/trace.h')
-rw-r--r-- | src/include/utils/trace.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/include/utils/trace.h b/src/include/utils/trace.h index 29bda724862..8dce7013d40 100644 --- a/src/include/utils/trace.h +++ b/src/include/utils/trace.h @@ -27,7 +27,7 @@ char *tprintf_timestamp(void); #define TIMESTAMP_SIZE 0 #endif -extern int tprintf1(const char *fmt, ...); +extern int tprintf1(const char *fmt,...); extern int tprintf(int flag, const char *fmt,...); extern int eprintf(const char *fmt,...); extern int option_flag(int flag); @@ -77,12 +77,12 @@ extern int pg_options[NUM_PG_OPTIONS]; #ifdef __GNUC__ #define PRINTF(args...) tprintf1(args) -#define EPRINTF(args...) eprintf(args) +#define EPRINTF(args...) eprintf(args) #define TPRINTF(flag, args...) tprintf(flag, args) #else #define PRINTF tprintf1 #define EPRINTF eprintf -#define TPRINTF tprintf +#define TPRINTF tprintf #endif #endif /* TRACE_H */ |