Fix obsolescent C declaration syntax

gcc -Wextra/-Wold-style-declaration thinks that "inline" should go
before the function return type.
pull/3/head
Peter Eisentraut 14 years ago
parent a5985a96a8
commit afe86a9e73
  1. 2
      src/backend/access/gist/gistproc.c

@ -327,7 +327,7 @@ non_negative(float val)
/*
* Consider replacement of currently selected split with the better one.
*/
static void inline
static inline void
g_box_consider_split(ConsiderSplitContext *context, int dimNum,
double rightLower, int minLeftCount,
double leftUpper, int maxLeftCount)

Loading…
Cancel
Save