aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2007-02-06 16:20:23 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2007-02-06 16:20:23 +0000
commit28c3cd5c1c58aa70610fe0b4a9848b582f0542c5 (patch)
treee9f98086454b8d996f7997d107ebae5d6ed38a10 /src
parentc76ed8151305d724104cd355f15ea982d08e3bc4 (diff)
downloadpostgresql-28c3cd5c1c58aa70610fe0b4a9848b582f0542c5.tar.gz
postgresql-28c3cd5c1c58aa70610fe0b4a9848b582f0542c5.zip
Fix typo in comment.
Diffstat (limited to 'src')
-rw-r--r--src/backend/port/sysv_shmem.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/port/sysv_shmem.c b/src/backend/port/sysv_shmem.c
index ac4833bafcc..5488bc0510c 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.48 2007/01/05 22:19:35 momjian Exp $
+ * $PostgreSQL: pgsql/src/backend/port/sysv_shmem.c,v 1.49 2007/02/06 16:20:23 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@@ -203,7 +203,7 @@ PGSharedMemoryIsInUse(unsigned long id1, unsigned long id2)
/*
* We detect whether a shared memory segment is in use by seeing whether
- * it (a) exists and (b) has any processes are attached to it.
+ * it (a) exists and (b) has any processes attached to it.
*/
if (shmctl(shmId, IPC_STAT, &shmStat) < 0)
{