summaryrefslogtreecommitdiff
path: root/src/backend/postmaster/postmaster.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/backend/postmaster/postmaster.c')
-rw-r--r--src/backend/postmaster/postmaster.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/backend/postmaster/postmaster.c b/src/backend/postmaster/postmaster.c
index 6ef32523e7..256e0d4c39 100644
--- a/src/backend/postmaster/postmaster.c
+++ b/src/backend/postmaster/postmaster.c
@@ -10,7 +10,7 @@
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/postmaster/postmaster.c,v 1.95 1998/08/25 21:33:59 scrappy Exp $
+ * $Header: /cvsroot/pgsql/src/backend/postmaster/postmaster.c,v 1.96 1998/09/01 03:24:45 momjian Exp $
*
* NOTES
*
@@ -646,7 +646,7 @@ ServerLoop(void)
continue;
fprintf(stderr, "%s: ServerLoop: select failed\n",
progname);
- return (STATUS_ERROR);
+ return STATUS_ERROR;
}
/*
@@ -811,7 +811,7 @@ initMasks(fd_set *rmask, fd_set *wmask)
nsocks = ServerSock_INET;
}
- return (nsocks + 1);
+ return nsocks + 1;
}
@@ -1303,7 +1303,7 @@ BackendStartup(Port *port)
{
fprintf(stderr, "%s: BackendStartup: fork failed\n",
progname);
- return (STATUS_ERROR);
+ return STATUS_ERROR;
}
if (DebugLvl)
@@ -1332,7 +1332,7 @@ BackendStartup(Port *port)
ActiveBackends = TRUE;
- return (STATUS_OK);
+ return STATUS_OK;
}
/*
@@ -1565,14 +1565,14 @@ CharRemap(long int ch)
ch = ch % 62;
if (ch < 26)
- return ('A' + ch);
+ return 'A' + ch;
ch -= 26;
if (ch < 26)
- return ('a' + ch);
+ return 'a' + ch;
ch -= 26;
- return ('0' + ch);
+ return '0' + ch;
}
/*