Fix printf mask for SizeVfdCache
authorBruce Momjian
Tue, 30 May 2006 13:04:59 +0000 (13:04 +0000)
committerBruce Momjian
Tue, 30 May 2006 13:04:59 +0000 (13:04 +0000)
Qingqing Zhou

src/backend/storage/file/fd.c

index 18abf3ced24c2611d68f098ecc1d12b6582e798e..1765d66987c46577c3c6c357a5101f36ffc6f666 100644 (file)
@@ -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? */