From b5a47f245f8bdb96b9e7c8979d2b46684ca3d872 Mon Sep 17 00:00:00 2001
From: Peter Eisentraut <peter_e@gmx.net>
Date: Thu, 8 Nov 2007 14:47:51 +0000
Subject: [PATCH] Wording changes

---
 src/backend/postmaster/postmaster.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/backend/postmaster/postmaster.c b/src/backend/postmaster/postmaster.c
index db72f94abf4..fca56af1769 100644
--- a/src/backend/postmaster/postmaster.c
+++ b/src/backend/postmaster/postmaster.c
@@ -37,7 +37,7 @@
  *
  *
  * IDENTIFICATION
- *	  $PostgreSQL: pgsql/src/backend/postmaster/postmaster.c,v 1.544 2007/11/05 00:00:34 neilc Exp $
+ *	  $PostgreSQL: pgsql/src/backend/postmaster/postmaster.c,v 1.545 2007/11/08 14:47:51 petere Exp $
  *
  * NOTES
  *
@@ -2201,7 +2201,7 @@ reaper(SIGNAL_ARGS)
 			WalWriterPID = 0;
 			if (!EXIT_STATUS_0(exitstatus))
 				HandleChildCrash(pid, exitstatus,
-								 _("wal writer process"));
+								 _("WAL writer process"));
 			continue;
 		}
 
@@ -2492,7 +2492,7 @@ LogChildExit(int lev, const char *procname, int pid, int exitstatus)
 		  "server process" */
 				(errmsg("%s (PID %d) was terminated by exception 0x%X",
 						procname, pid, WTERMSIG(exitstatus)),
-				 errhint("See C include file \"ntstatus.h\" for a description of the hex value.")));
+				 errhint("See C include file \"ntstatus.h\" for a description of the hexadecimal value.")));
 #elif defined(HAVE_DECL_SYS_SIGLIST) && HAVE_DECL_SYS_SIGLIST
 		ereport(lev,
 
@@ -4014,7 +4014,7 @@ StartChildProcess(AuxProcType type)
 				break;
 			case WalWriterProcess:
 				ereport(LOG,
-				   (errmsg("could not fork wal writer process: %m")));
+				   (errmsg("could not fork WAL writer process: %m")));
 				break;
 			default:
 				ereport(LOG,
-- 
GitLab