diff options
author | Heikki Linnakangas | 2012-06-24 17:03:57 +0000 |
---|---|---|
committer | Heikki Linnakangas | 2012-06-24 17:03:57 +0000 |
commit | a218e23a08519d525d09565bbeddbf682f76d4dd (patch) | |
tree | 83676e3446afb75b1f4ed2ee21ec8575e6380dd5 /src | |
parent | 96ff85e2dd64e7987ee6d69f306e3b8f54cc72c0 (diff) |
Oops. Remove stray paren.
I didn't notice this on my laptop as I don't HAVE_FSYNC_WRITETHROUGH.
Diffstat (limited to 'src')
-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 f0a89ac29a..642c129d9f 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 |