1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-28 23:42:10 +03:00

Fix printf mask for SizeVfdCache

Qingqing Zhou
This commit is contained in:
Bruce Momjian
2006-05-30 13:04:59 +00:00
parent 56f44784f6
commit 26cfefabad

View File

@ -7,7 +7,7 @@
* Portions Copyright (c) 1994, Regents of the University of California * Portions Copyright (c) 1994, Regents of the University of California
* *
* IDENTIFICATION * 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: * NOTES:
* *
@ -649,7 +649,7 @@ AllocateVfd(void)
Index i; Index i;
File file; File file;
DO_DB(elog(LOG, "AllocateVfd. Size %d", SizeVfdCache)); DO_DB(elog(LOG, "AllocateVfd. Size %lu", SizeVfdCache));
Assert(SizeVfdCache > 0); /* InitFileAccess not called? */ Assert(SizeVfdCache > 0); /* InitFileAccess not called? */