1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-13 07:41:39 +03:00

Mark some more variables as static or include the appropriate header

Detected by clang's -Wmissing-variable-declarations.

From: Andres Freund <andres@anarazel.de>
This commit is contained in:
Peter Eisentraut
2014-02-08 21:21:46 -05:00
parent 6aa2bdf6a0
commit 66c04c981d
8 changed files with 8 additions and 7 deletions

View File

@ -51,7 +51,7 @@ typedef struct EventTriggerQueryState
struct EventTriggerQueryState *previous;
} EventTriggerQueryState;
EventTriggerQueryState *currentEventTriggerState = NULL;
static EventTriggerQueryState *currentEventTriggerState = NULL;
typedef struct
{