Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit e138b80

Browse files
committed
String fix
1 parent 2b7cef5 commit e138b80

File tree

1 file changed

+2
-2
lines changed
  • src/backend/access/transam

1 file changed

+2
-2
lines changed

src/backend/access/transam/xlog.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group
88
* Portions Copyright (c) 1994, Regents of the University of California
99
*
10-
* $PostgreSQL: pgsql/src/backend/access/transam/xlog.c,v 1.255 2006/11/10 22:32:20 tgl Exp $
10+
* $PostgreSQL: pgsql/src/backend/access/transam/xlog.c,v 1.256 2006/11/16 14:28:41 petere Exp $
1111
*
1212
*-------------------------------------------------------------------------
1313
*/
@@ -6595,7 +6595,7 @@ pg_xlogfile_name(PG_FUNCTION_ARGS)
65956595
if (sscanf(locationstr, "%X/%X", &uxlogid, &uxrecoff) != 2)
65966596
ereport(ERROR,
65976597
(errcode(ERRCODE_INVALID_PARAMETER_VALUE),
6598-
errmsg("could not parse xlog location \"%s\"",
6598+
errmsg("could not parse transaction log location \"%s\"",
65996599
locationstr)));
66006600

66016601
locationpoint.xlogid = uxlogid;

0 commit comments

Comments
 (0)