File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
src/backend/storage/freespace Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 8
8
* Portions Copyright (c) 1994, Regents of the University of California
9
9
*
10
10
* IDENTIFICATION
11
- * $PostgreSQL: pgsql/src/backend/storage/freespace/freespace.c,v 1.61 2008/09/30 10:52:13 heikki Exp $
11
+ * $PostgreSQL: pgsql/src/backend/storage/freespace/freespace.c,v 1.62 2008/09/30 14:15:58 tgl Exp $
12
12
*
13
13
*
14
14
* NOTES:
@@ -382,7 +382,8 @@ fsm_space_needed_to_cat(Size needed)
382
382
383
383
/* Can't ask for more space than the highest category represents */
384
384
if (needed > MaxFSMRequestSize )
385
- elog (ERROR , "invalid FSM request size %d" , needed );
385
+ elog (ERROR , "invalid FSM request size %lu" ,
386
+ (unsigned long ) needed );
386
387
387
388
if (needed == 0 )
388
389
return 1 ;
You can’t perform that action at this time.
0 commit comments