diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2003-07-28 00:09:16 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2003-07-28 00:09:16 +0000 |
commit | 81b5c8a1364e7d287fb0aaac848f7f84e64b86d3 (patch) | |
tree | 6ce59b7bf5b0cd674a2b0e906adecdc98a231ddf /src/port/strerror.c | |
parent | b556e8200e55261cf41de7ce8be4b38b0a062c2b (diff) |
A visit from the message-style police ...
Diffstat (limited to 'src/port/strerror.c')
-rw-r--r-- | src/port/strerror.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/port/strerror.c b/src/port/strerror.c index b878388ea25..daa97a803a9 100644 --- a/src/port/strerror.c +++ b/src/port/strerror.c @@ -1,4 +1,4 @@ -/* $Id: strerror.c,v 1.1 2002/07/18 04:13:59 momjian Exp $ */ +/* $Id: strerror.c,v 1.2 2003/07/28 00:09:16 tgl Exp $ */ /* * strerror - map error number to descriptive string @@ -23,7 +23,7 @@ strerror(int errnum) if (errnum < 0 || errnum > sys_nerr) { - sprintf(buf, "unknown error %d", errnum); + sprintf(buf, "unrecognized error %d", errnum); return buf; } |