mirror of
https://github.com/postgres/postgres.git
synced 2025-11-24 00:23:06 +03:00
Capitalization fixes
This commit is contained in:
@@ -303,7 +303,7 @@ main(int argc, char **argv)
|
||||
proc_exit(1);
|
||||
}
|
||||
|
||||
printf("forked child pid %d OK\n", cpid);
|
||||
printf("forked child PID %d OK\n", cpid);
|
||||
|
||||
if (storage->flag != 1234)
|
||||
printf("Wrong value found in shared memory!\n");
|
||||
|
||||
@@ -171,7 +171,7 @@ pqsignal(int signum, pqsigfunc handler)
|
||||
return prevfunc;
|
||||
}
|
||||
|
||||
/* Create the signal listener pipe for specified pid */
|
||||
/* Create the signal listener pipe for specified PID */
|
||||
HANDLE
|
||||
pgwin32_create_signal_listener(pid_t pid)
|
||||
{
|
||||
@@ -186,7 +186,7 @@ pgwin32_create_signal_listener(pid_t pid)
|
||||
|
||||
if (pipe == INVALID_HANDLE_VALUE)
|
||||
ereport(ERROR,
|
||||
(errmsg("could not create signal listener pipe for pid %d: error code %d",
|
||||
(errmsg("could not create signal listener pipe for PID %d: error code %d",
|
||||
(int) pid, (int) GetLastError())));
|
||||
|
||||
return pipe;
|
||||
|
||||
Reference in New Issue
Block a user