diff options
author | Neil Conway <neilc@samurai.com> | 2006-03-01 06:30:32 +0000 |
---|---|---|
committer | Neil Conway <neilc@samurai.com> | 2006-03-01 06:30:32 +0000 |
commit | 8e5a10d46c38976e40504456a5978caa53b77b3c (patch) | |
tree | b94a9b7673f6c919ebacc3546f72032b8eb05657 /src/backend/port/sysv_shmem.c | |
parent | 87fa10a42613ee1ca9cc4bb22eb163f8e179b3f8 (diff) |
This patch makes the error message strings throughout the backend
more compliant with the error message style guide. In particular,
errdetail should begin with a capital letter and end with a period,
whereas errmsg should not. I also fixed a few related issues in
passing, such as fixing the repeated misspelling of "lexeme" in
contrib/tsearch2 (per Tom's suggestion).
Diffstat (limited to 'src/backend/port/sysv_shmem.c')
-rw-r--r-- | src/backend/port/sysv_shmem.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/port/sysv_shmem.c b/src/backend/port/sysv_shmem.c index 3092ca2a377..a2ea0433b78 100644 --- a/src/backend/port/sysv_shmem.c +++ b/src/backend/port/sysv_shmem.c @@ -10,7 +10,7 @@ * Portions Copyright (c) 1994, Regents of the University of California * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/port/sysv_shmem.c,v 1.44 2005/10/15 02:49:22 momjian Exp $ + * $PostgreSQL: pgsql/src/backend/port/sysv_shmem.c,v 1.45 2006/03/01 06:30:32 neilc Exp $ * *------------------------------------------------------------------------- */ @@ -426,7 +426,7 @@ PGSharedMemoryReAttach(void) UsedShmemSegAddr = origUsedShmemSegAddr; #endif - elog(DEBUG3, "Attaching to %p", UsedShmemSegAddr); + elog(DEBUG3, "attaching to %p", UsedShmemSegAddr); hdr = (void *) PGSharedMemoryAttach((IpcMemoryKey) UsedShmemSegID, &shmid); if (hdr == NULL) elog(FATAL, "could not reattach to shared memory (key=%d, addr=%p): %m", |