Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit b5a47f2

Browse files
committed
Wording changes
1 parent 156d648 commit b5a47f2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/backend/postmaster/postmaster.c

+4-4
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
*
3838
*
3939
* IDENTIFICATION
40-
* $PostgreSQL: pgsql/src/backend/postmaster/postmaster.c,v 1.544 2007/11/05 00:00:34 neilc Exp $
40+
* $PostgreSQL: pgsql/src/backend/postmaster/postmaster.c,v 1.545 2007/11/08 14:47:51 petere Exp $
4141
*
4242
* NOTES
4343
*
@@ -2201,7 +2201,7 @@ reaper(SIGNAL_ARGS)
22012201
WalWriterPID = 0;
22022202
if (!EXIT_STATUS_0(exitstatus))
22032203
HandleChildCrash(pid, exitstatus,
2204-
_("wal writer process"));
2204+
_("WAL writer process"));
22052205
continue;
22062206
}
22072207

@@ -2492,7 +2492,7 @@ LogChildExit(int lev, const char *procname, int pid, int exitstatus)
24922492
"server process" */
24932493
(errmsg("%s (PID %d) was terminated by exception 0x%X",
24942494
procname, pid, WTERMSIG(exitstatus)),
2495-
errhint("See C include file \"ntstatus.h\" for a description of the hex value.")));
2495+
errhint("See C include file \"ntstatus.h\" for a description of the hexadecimal value.")));
24962496
#elif defined(HAVE_DECL_SYS_SIGLIST) && HAVE_DECL_SYS_SIGLIST
24972497
ereport(lev,
24982498

@@ -4014,7 +4014,7 @@ StartChildProcess(AuxProcType type)
40144014
break;
40154015
case WalWriterProcess:
40164016
ereport(LOG,
4017-
(errmsg("could not fork wal writer process: %m")));
4017+
(errmsg("could not fork WAL writer process: %m")));
40184018
break;
40194019
default:
40204020
ereport(LOG,

0 commit comments

Comments
 (0)