diff options
author | Bruce Momjian | 2000-03-23 23:16:49 +0000 |
---|---|---|
committer | Bruce Momjian | 2000-03-23 23:16:49 +0000 |
commit | 6d79d6027c61832cedf60757c83607495b3ee3a2 (patch) | |
tree | 6add79387710d6df82fdf55d2cff81dc817f2149 /src/include/utils/ps_status.h | |
parent | f8645018bc2a54865ebde317556ba342b03e1402 (diff) |
>> 5. empty define that results in an empty but terminated line ( ; )
easy (maybe dumb) fix for 5 in attachment define.patch
greetings, Andreas
Diffstat (limited to 'src/include/utils/ps_status.h')
-rw-r--r-- | src/include/utils/ps_status.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/utils/ps_status.h b/src/include/utils/ps_status.h index 014105b2c80..0058e56ae3f 100644 --- a/src/include/utils/ps_status.h +++ b/src/include/utils/ps_status.h @@ -50,7 +50,7 @@ char *ps_status_buffer = NULL extern char Ps_status_buffer[]; -#define PS_DEFINE_BUFFER +#undef PS_DEFINE_BUFFER #define PS_INIT_STATUS(argc, argv, execname, username, hostname, dbname) \ { \ @@ -75,7 +75,7 @@ extern char Ps_status_buffer[]; #endif #ifdef NO_PS_STATUS -#define PS_DEFINE_BUFFER +#undef PS_DEFINE_BUFFER #define PS_INIT_STATUS(argc, argv, execname, username, hostname, dbname) #define PS_CLEAR_STATUS() #define PS_SET_STATUS(status) { if ((status)); } |