diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2005-10-29 00:31:52 +0000 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2005-10-29 00:31:52 +0000 |
commit | 07bb9f086bd8ef7a60d6249d723423ec8847efbf (patch) | |
tree | 0f36fdf98f828e3fa82ea2ee956ee5d4a9c8fc58 /src/backend/access/transam/xlog.c | |
parent | a7335a3401acf4f322c39087c961f62511545b70 (diff) | |
download | postgresql-07bb9f086bd8ef7a60d6249d723423ec8847efbf.tar.gz postgresql-07bb9f086bd8ef7a60d6249d723423ec8847efbf.zip |
Message corrections
Diffstat (limited to 'src/backend/access/transam/xlog.c')
-rw-r--r-- | src/backend/access/transam/xlog.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/access/transam/xlog.c b/src/backend/access/transam/xlog.c index 188032c7132..66db5d9dd26 100644 --- a/src/backend/access/transam/xlog.c +++ b/src/backend/access/transam/xlog.c @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/backend/access/transam/xlog.c,v 1.221 2005/10/22 20:27:17 tgl Exp $ + * $PostgreSQL: pgsql/src/backend/access/transam/xlog.c,v 1.222 2005/10/29 00:31:50 petere Exp $ * *------------------------------------------------------------------------- */ @@ -1468,7 +1468,7 @@ XLogWrite(XLogwrtRqst WriteRqst, bool flexible) ereport(PANIC, (errcode_for_file_access(), errmsg("could not write to log file %u, segment %u " - "at offset %u length %lu: %m", + "at offset %u, length %lu: %m", openLogId, openLogSeg, openLogOff, (unsigned long) nbytes))); } @@ -3558,7 +3558,7 @@ ReadControlFile(void) if (ControlFile->floatFormat != FLOATFORMAT_VALUE) ereport(FATAL, (errmsg("database files are incompatible with server"), - errdetail("The database cluster appears to use a different floating-point format than the server executable."), + errdetail("The database cluster appears to use a different floating-point number format than the server executable."), errhint("It looks like you need to initdb."))); if (ControlFile->blcksz != BLCKSZ) ereport(FATAL, |