diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2003-07-24 22:04:15 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2003-07-24 22:04:15 +0000 |
commit | cfa191f3b8115b37c526cc1eee3dd1d2af7c11ca (patch) | |
tree | 63cd0ef3cb8c56e58fb46c0fbcf7d5738c68686e /src/backend/storage/file/buffile.c | |
parent | 658fca8d3abd2f8f1b04028ac2d0dd49b49896c5 (diff) | |
download | postgresql-cfa191f3b8115b37c526cc1eee3dd1d2af7c11ca.tar.gz postgresql-cfa191f3b8115b37c526cc1eee3dd1d2af7c11ca.zip |
Error message editing in backend/storage.
Diffstat (limited to 'src/backend/storage/file/buffile.c')
-rw-r--r-- | src/backend/storage/file/buffile.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/storage/file/buffile.c b/src/backend/storage/file/buffile.c index e479bfe22b7..ca60aef72c5 100644 --- a/src/backend/storage/file/buffile.c +++ b/src/backend/storage/file/buffile.c @@ -7,7 +7,7 @@ * Portions Copyright (c) 1994, Regents of the University of California * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/storage/file/buffile.c,v 1.16 2003/04/29 03:21:29 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/storage/file/buffile.c,v 1.17 2003/07/24 22:04:09 tgl Exp $ * * NOTES: * @@ -23,7 +23,7 @@ * will go away automatically at transaction end. If the underlying * virtual File is made with OpenTemporaryFile, then all resources for * the file are certain to be cleaned up even if processing is aborted - * by elog(ERROR). To avoid confusion, the caller should take care that + * by ereport(ERROR). To avoid confusion, the caller should take care that * all calls for a single BufFile are made in the same palloc context. * * BufFile also supports temporary files that exceed the OS file size limit @@ -479,7 +479,7 @@ BufFileSeek(BufFile *file, int fileno, long offset, int whence) break; #endif default: - elog(ERROR, "BufFileSeek: invalid whence: %d", whence); + elog(ERROR, "invalid whence: %d", whence); return EOF; } while (newOffset < 0) |