summaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authorBruce Momjian1999-03-19 18:56:43 +0000
committerBruce Momjian1999-03-19 18:56:43 +0000
commitbd6f98af312d464b0052c244832c5f183cfd9575 (patch)
tree5cf484f58a457ce809efc1745a540e24ebda1f03 /src/include
parent0d01fd4e19aec4200ce257f0cc9e1bbce7373dae (diff)
I suggest the following portability patch, which does not
change functionality, but makes the code more ANSI C'ish. My AIX xlc compiler barfs on all of these. Can someone please review and apply to current. <<port.patch>> Thanks Andreas
Diffstat (limited to 'src/include')
-rw-r--r--src/include/utils/ps_status.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/utils/ps_status.h b/src/include/utils/ps_status.h
index 9a74d2c3501..c68020ac08c 100644
--- a/src/include/utils/ps_status.h
+++ b/src/include/utils/ps_status.h
@@ -20,7 +20,7 @@
extern char *ps_status_buffer;
#define PS_DEFINE_BUFFER \
-char *ps_status_buffer = NULL;
+char *ps_status_buffer = NULL
#define PS_INIT_STATUS(argc, argv, execname, username, hostname, dbname) \
{ \
@@ -53,7 +53,7 @@ char *ps_status_buffer = NULL;
extern const char **ps_status;
#define PS_DEFINE_BUFFER \
-const char **ps_status = NULL;
+const char **ps_status = NULL
#define PS_INIT_STATUS(argc, argv, execname, username, hostname, dbname) \
{ \