Commit b76c61f1 authored by Robert Haas's avatar Robert Haas

Silence bogus compiler warning.

parent c9f48b57
...@@ -44,7 +44,7 @@ transfer_all_new_dbs(DbInfoArr *old_db_arr, ...@@ -44,7 +44,7 @@ transfer_all_new_dbs(DbInfoArr *old_db_arr,
old_dbnum < old_db_arr->ndbs; old_dbnum < old_db_arr->ndbs;
old_dbnum++, new_dbnum++) old_dbnum++, new_dbnum++)
{ {
DbInfo *old_db = &old_db_arr->dbs[old_dbnum], *new_db; DbInfo *old_db = &old_db_arr->dbs[old_dbnum], *new_db = NULL;
FileNameMap *mappings; FileNameMap *mappings;
int n_maps; int n_maps;
pageCnvCtx *pageConverter = NULL; pageCnvCtx *pageConverter = NULL;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment