]> granicus.if.org Git - postgresql/commitdiff
Fix some typos I introduced in WIN32-only code late last night.
authorTom Lane <tgl@sss.pgh.pa.us>
Fri, 28 May 2004 15:14:03 +0000 (15:14 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Fri, 28 May 2004 15:14:03 +0000 (15:14 +0000)
Thanks to Thomas Hallgren.

src/backend/postmaster/postmaster.c

index 07812c7b3100a67fa3421dabc2b6f5403aafbb98..89a22815098955fc0fcc5d5050bac3d087ff26bd 100644 (file)
@@ -37,7 +37,7 @@
  *
  *
  * IDENTIFICATION
- *       $PostgreSQL: pgsql/src/backend/postmaster/postmaster.c,v 1.398 2004/05/28 05:12:58 tgl Exp $
+ *       $PostgreSQL: pgsql/src/backend/postmaster/postmaster.c,v 1.399 2004/05/28 15:14:03 tgl Exp $
  *
  * NOTES
  *
@@ -3520,7 +3520,7 @@ ShmemBackendArrayRemove(pid_t pid)
 
        ereport(WARNING,
                        (errmsg_internal("unable to find backend entry with pid %d",
-                                                        pid)));
+                                                        (int) pid)));
 }
 
 #endif /* EXEC_BACKEND */
@@ -3533,7 +3533,6 @@ win32_forkexec(const char *path, char *argv[])
 {
        STARTUPINFO si;
        PROCESS_INFORMATION pi;
-       char       *p;
        int                     i;
        int                     j;
        char            cmdLine[MAXPGPATH * 2];
@@ -3541,8 +3540,8 @@ win32_forkexec(const char *path, char *argv[])
        HANDLE          waiterThread;
 
        /* Format the cmd line */
-       cmdline[sizeof(cmdLine)-1] = '\0';
-       cmdline[sizeof(cmdLine)-2] = '\0';
+       cmdLine[sizeof(cmdLine)-1] = '\0';
+       cmdLine[sizeof(cmdLine)-2] = '\0';
        snprintf(cmdLine, sizeof(cmdLine)-1, "\"%s\"", path);
        i = 0;
        while (argv[++i] != NULL)
@@ -3550,7 +3549,7 @@ win32_forkexec(const char *path, char *argv[])
                j = strlen(cmdLine);
                snprintf(cmdLine+j, sizeof(cmdLine)-1-j, " \"%s\"", argv[i]);
        }
-       if (cmdline[sizeof(cmdLine)-2] != '\0')
+       if (cmdLine[sizeof(cmdLine)-2] != '\0')
        {
                elog(LOG, "subprocess command line too long");
                return -1;