aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2005-04-15 22:49:45 +0000
committerBruce Momjian <bruce@momjian.us>2005-04-15 22:49:45 +0000
commit96d61bc163edf2e99c6050667c0b88f23d15acfd (patch)
tree2417f536a564d3f15167a7a6b1667b9ba2295c88 /src
parentbeb9e2ef3488e8676f1617eaab7135e5b77ea8eb (diff)
downloadpostgresql-96d61bc163edf2e99c6050667c0b88f23d15acfd.tar.gz
postgresql-96d61bc163edf2e99c6050667c0b88f23d15acfd.zip
Fix comment typo.
Diffstat (limited to 'src')
-rw-r--r--src/backend/access/transam/xlog.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/access/transam/xlog.c b/src/backend/access/transam/xlog.c
index fad0927ac6f..682a6323e0e 100644
--- a/src/backend/access/transam/xlog.c
+++ b/src/backend/access/transam/xlog.c
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $PostgreSQL: pgsql/src/backend/access/transam/xlog.c,v 1.180.4.1 2005/03/24 04:36:57 momjian Exp $
+ * $PostgreSQL: pgsql/src/backend/access/transam/xlog.c,v 1.180.4.2 2005/04/15 22:49:45 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -5166,7 +5166,7 @@ assign_xlog_sync_method(const char *method, bool doit, GucSource source)
#ifndef FSYNC_IS_WRITE_THROUGH
if (pg_strcasecmp(method, "fsync") == 0)
#else
- /* Win32 fsync() == _commit(0, which writes through a write cache */
+ /* Win32 fsync() == _commit(), which writes through a write cache */
if (pg_strcasecmp(method, "fsync_writethrough") == 0)
#endif
{