diff options
Diffstat (limited to 'src/backend/port/qnx4/shm.c')
-rw-r--r-- | src/backend/port/qnx4/shm.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/backend/port/qnx4/shm.c b/src/backend/port/qnx4/shm.c index 9958f799384..14c77f4fc9c 100644 --- a/src/backend/port/qnx4/shm.c +++ b/src/backend/port/qnx4/shm.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/port/qnx4/Attic/shm.c,v 1.3 2001/03/13 01:17:06 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/port/qnx4/Attic/shm.c,v 1.4 2001/03/22 03:59:43 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -184,8 +184,10 @@ shmctl(int shmid, int cmd, struct shmid_ds * buf) } if (cmd == IPC_STAT) { - /* Can we support IPC_STAT? We only need shm_nattch ... - * For now, punt and assume the shm seg does not exist. + + /* + * Can we support IPC_STAT? We only need shm_nattch ... For now, + * punt and assume the shm seg does not exist. */ errno = EINVAL; return -1; |