aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2006-05-30 13:04:59 +0000
committerBruce Momjian <bruce@momjian.us>2006-05-30 13:04:59 +0000
commit26cfefabadca9daf210188d275f2d09f707cb25f (patch)
treebfeeeb6c75d4dc172daf22e4c059053c7774c1e3
parent56f44784f62c62a4f8c149bc618a4ccc97e96db2 (diff)
downloadpostgresql-26cfefabadca9daf210188d275f2d09f707cb25f.tar.gz
postgresql-26cfefabadca9daf210188d275f2d09f707cb25f.zip
Fix printf mask for SizeVfdCache
Qingqing Zhou
-rw-r--r--src/backend/storage/file/fd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/storage/file/fd.c b/src/backend/storage/file/fd.c
index 18abf3ced24..1765d66987c 100644
--- a/src/backend/storage/file/fd.c
+++ b/src/backend/storage/file/fd.c
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1994, Regents of the University of California
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/backend/storage/file/fd.c,v 1.127 2006/03/05 15:58:37 momjian Exp $
+ * $PostgreSQL: pgsql/src/backend/storage/file/fd.c,v 1.128 2006/05/30 13:04:59 momjian Exp $
*
* NOTES:
*
@@ -649,7 +649,7 @@ AllocateVfd(void)
Index i;
File file;
- DO_DB(elog(LOG, "AllocateVfd. Size %d", SizeVfdCache));
+ DO_DB(elog(LOG, "AllocateVfd. Size %lu", SizeVfdCache));
Assert(SizeVfdCache > 0); /* InitFileAccess not called? */