diff options
author | Bruce Momjian <bruce@momjian.us> | 1999-03-19 18:56:43 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1999-03-19 18:56:43 +0000 |
commit | bd6f98af312d464b0052c244832c5f183cfd9575 (patch) | |
tree | 5cf484f58a457ce809efc1745a540e24ebda1f03 /src/include/utils/ps_status.h | |
parent | 0d01fd4e19aec4200ce257f0cc9e1bbce7373dae (diff) | |
download | postgresql-bd6f98af312d464b0052c244832c5f183cfd9575.tar.gz postgresql-bd6f98af312d464b0052c244832c5f183cfd9575.zip |
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/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 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) \ { \ |