diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2000-03-17 02:36:41 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2000-03-17 02:36:41 +0000 |
commit | 341b328b180e65d1fa5c8f2235cf101c8a12824f (patch) | |
tree | 88d54198ffa15aea581251471f8c062ae9e3142e /src/backend/postmaster/postmaster.c | |
parent | bc1f117094fbe2921f37923d8f7528284cb26dfc (diff) |
Fix a bunch of minor portability problems and maybe-bugs revealed by
running gcc and HP's cc with warnings cranked way up. Signed vs unsigned
comparisons, routines declared static and then defined not-static,
that kind of thing. Tedious, but perhaps useful...
Diffstat (limited to 'src/backend/postmaster/postmaster.c')
-rw-r--r-- | src/backend/postmaster/postmaster.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/postmaster/postmaster.c b/src/backend/postmaster/postmaster.c index c455d1cbd2a..28a7ae3933d 100644 --- a/src/backend/postmaster/postmaster.c +++ b/src/backend/postmaster/postmaster.c @@ -11,7 +11,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/postmaster/postmaster.c,v 1.136 2000/02/18 09:28:44 inoue Exp $ + * $Header: /cvsroot/pgsql/src/backend/postmaster/postmaster.c,v 1.137 2000/03/17 02:36:18 tgl Exp $ * * NOTES * @@ -1262,7 +1262,7 @@ ConnCreate(int serverFd) /* * ConnFree -- cree a local connection data structure */ -void +static void ConnFree(Port *conn) { #ifdef USE_SSL |