Add 'volatile' to suppress 'variable might be clobbered by longjmp'

warning emitted by some versions of gcc.
This commit is contained in:
Tom Lane 2007-07-01 02:20:59 +00:00
parent 9fc25c0511
commit 070907b241
1 changed files with 2 additions and 2 deletions

View File

@ -55,7 +55,7 @@
*
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/postmaster/autovacuum.c,v 1.53 2007/06/30 04:08:05 alvherre Exp $
* $PostgreSQL: pgsql/src/backend/postmaster/autovacuum.c,v 1.54 2007/07/01 02:20:59 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@ -1776,7 +1776,7 @@ do_autovacuum(void)
List *table_oids = NIL;
List *toast_oids = NIL;
List *table_toast_list = NIL;
ListCell *cell;
ListCell * volatile cell;
PgStat_StatDBEntry *shared;
PgStat_StatDBEntry *dbentry;
BufferAccessStrategy bstrategy;