diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2010-10-02 18:40:28 -0400 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2010-10-02 18:40:28 -0400 |
commit | e77f605d431c488983d6c96cb3513c691bf1907c (patch) | |
tree | 72defcf5a439928687aa03e04d30e7353f7a5f33 /src | |
parent | 1f0b62e8c28026f5d1d3693087f7b4aef6a191af (diff) | |
download | postgresql-e77f605d431c488983d6c96cb3513c691bf1907c.tar.gz postgresql-e77f605d431c488983d6c96cb3513c691bf1907c.zip |
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
Diffstat (limited to 'src')
-rw-r--r-- | src/tools/fsync/test_fsync.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/fsync/test_fsync.c b/src/tools/fsync/test_fsync.c index 3c9c6b60ced..28c211929ec 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"); |