aboutsummaryrefslogtreecommitdiff
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.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/postmaster/postmaster.c b/src/backend/postmaster/postmaster.c
index 161b832c320..ca32fcbe496 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.147 2000/06/06 16:04:29 petere Exp $
+ * $Header: /cvsroot/pgsql/src/backend/postmaster/postmaster.c,v 1.148 2000/06/14 18:17:38 petere Exp $
*
* NOTES
*
@@ -1801,12 +1801,12 @@ split_opts(char **argv, int *argcp, char *s)
{
while (s && *s)
{
- while (isspace(*s))
+ while (isspace((int) *s))
++s;
if (*s == '\0')
break;
argv[(*argcp)++] = s;
- while (*s && !isspace(*s))
+ while (*s && !isspace((int) *s))
++s;
if (*s)
*s++ = '\0';