diff options
author | Heikki Linnakangas <heikki.linnakangas@iki.fi> | 2012-06-24 20:03:57 +0300 |
---|---|---|
committer | Heikki Linnakangas <heikki.linnakangas@iki.fi> | 2012-06-24 20:03:57 +0300 |
commit | a218e23a08519d525d09565bbeddbf682f76d4dd (patch) | |
tree | 83676e3446afb75b1f4ed2ee21ec8575e6380dd5 | |
parent | 96ff85e2dd64e7987ee6d69f306e3b8f54cc72c0 (diff) | |
download | postgresql-a218e23a08519d525d09565bbeddbf682f76d4dd.tar.gz postgresql-a218e23a08519d525d09565bbeddbf682f76d4dd.zip |
Oops. Remove stray paren.
I didn't notice this on my laptop as I don't HAVE_FSYNC_WRITETHROUGH.
-rw-r--r-- | src/backend/access/transam/xlog.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/access/transam/xlog.c b/src/backend/access/transam/xlog.c index f0a89ac29a2..642c129d9fa 100644 --- a/src/backend/access/transam/xlog.c +++ b/src/backend/access/transam/xlog.c @@ -8993,7 +8993,7 @@ issue_xlog_fsync(int fd, XLogSegNo segno) ereport(PANIC, (errcode_for_file_access(), errmsg("could not fsync write-through log file %s: %m", - XLogFileNameP(ThisTimeLineID, openLogSegNo))))); + XLogFileNameP(ThisTimeLineID, openLogSegNo)))); break; #endif #ifdef HAVE_FDATASYNC |