From 060f576d0b32ed69ba7317c9a310016ac0d4df02 Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Sat, 2 Oct 2010 18:40:28 -0400 Subject: [PATCH] Remove excess argument to open(2). Many compilers don't complain about this, but some do, and it's certainly wrong. Back-patch to 8.4 where the error was introduced. Mark Kirkwood --- src/tools/fsync/test_fsync.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tools/fsync/test_fsync.c b/src/tools/fsync/test_fsync.c index c237096717..a63441b81c 100644 --- a/src/tools/fsync/test_fsync.c +++ b/src/tools/fsync/test_fsync.c @@ -63,7 +63,7 @@ main(int argc, char *argv[]) for (i = 0; i < XLOG_SEG_SIZE; i++) full_buf[i] = random(); - if ((tmpfile = open(filename, O_RDWR | O_CREAT, S_IRUSR | S_IWUSR, 0)) == -1) + if ((tmpfile = open(filename, O_RDWR | O_CREAT, S_IRUSR | S_IWUSR)) == -1) die("Cannot open output file."); if (write(tmpfile, full_buf, XLOG_SEG_SIZE) != XLOG_SEG_SIZE) die("write failed"); -- 2.11.0