diff options
author | Heikki Linnakangas <heikki.linnakangas@iki.fi> | 2011-04-01 14:41:39 +0300 |
---|---|---|
committer | Heikki Linnakangas <heikki.linnakangas@iki.fi> | 2011-04-01 14:42:38 +0300 |
commit | 9d56886112d8307dcd28ce49048a770c5d26acf9 (patch) | |
tree | 686c3d6322fc1307f1f4691b0930be583dfd23a7 /src | |
parent | 60b142b9a6f413a92665766a1f265b361f68c20b (diff) | |
download | postgresql-9d56886112d8307dcd28ce49048a770c5d26acf9.tar.gz postgresql-9d56886112d8307dcd28ce49048a770c5d26acf9.zip |
Fix two missing spaces in error messages.
Josh Kupershmidt
Diffstat (limited to 'src')
-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 aba6fa83ae9..102a28ed04e 100644 --- a/src/backend/port/sysv_shmem.c +++ b/src/backend/port/sysv_shmem.c @@ -153,7 +153,7 @@ InternalIpcMemoryCreate(IpcMemoryKey memKey, Size size) "segment exceeded your kernel's SHMMAX parameter. You can either " "reduce the request size or reconfigure the kernel with larger SHMMAX. " "To reduce the request size (currently %lu bytes), reduce " - "PostgreSQL's shared memory usage, perhaps by reducing shared_buffers" + "PostgreSQL's shared memory usage, perhaps by reducing shared_buffers " "or max_connections.\n" "If the request size is already small, it's possible that it is less than " "your kernel's SHMMIN parameter, in which case raising the request size or " @@ -167,7 +167,7 @@ InternalIpcMemoryCreate(IpcMemoryKey memKey, Size size) "or exceeded your kernel's SHMALL parameter. You can either " "reduce the request size or reconfigure the kernel with larger SHMALL. " "To reduce the request size (currently %lu bytes), reduce " - "PostgreSQL's shared memory usage, perhaps by reducing shared_buffers" + "PostgreSQL's shared memory usage, perhaps by reducing shared_buffers " "or max_connections.\n" "The PostgreSQL documentation contains more information about shared " "memory configuration.", |