1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-30 11:03:19 +03:00

Silence compiler warning.

Not all compilers understand that elog(ERROR, ...) never returns.
This commit is contained in:
Heikki Linnakangas
2014-01-23 22:14:20 +02:00
parent b152c6cd0d
commit 0fdb2f7d7c

View File

@ -598,7 +598,10 @@ ginPlaceToPage(GinBtree btree, GinBtreeStack *stack,
return false;
}
else
{
elog(ERROR, "unknown return code from GIN placeToPage method: %d", rc);
return false; /* keep compiler quiet */
}
}
/*