1
0
mirror of https://github.com/postgres/postgres.git synced 2025-08-27 07:42:10 +03:00

Capitalization fixes

This commit is contained in:
Peter Eisentraut
2011-06-19 00:37:30 +03:00
parent 223d14a984
commit 8a8fbe7e79
18 changed files with 26 additions and 26 deletions

View File

@@ -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;