1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-02 09:02:37 +03:00

Suppress some gcc warnings.

This commit is contained in:
Tom Lane
2006-05-02 15:48:11 +00:00
parent 2610a1fd5e
commit 67030eec1e
2 changed files with 7 additions and 3 deletions

View File

@ -8,7 +8,7 @@
* Portions Copyright (c) 1994, Regents of the University of California
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/access/gin/ginentrypage.c,v 1.1 2006/05/02 11:28:54 teodor Exp $
* $PostgreSQL: pgsql/src/backend/access/gin/ginentrypage.c,v 1.2 2006/05/02 15:48:11 tgl Exp $
*-------------------------------------------------------------------------
*/
@ -116,7 +116,7 @@ entryIsMoveRight(GinBtree btree, Page page) {
static BlockNumber
entryLocateEntry(GinBtree btree, GinBtreeStack *stack) {
OffsetNumber low, high, maxoff;
IndexTuple itup;
IndexTuple itup = NULL;
int result;
Page page = BufferGetPage( stack->buffer );