Skip to content
Snippets Groups Projects
Commit 915cee45 authored by Bruce Momjian's avatar Bruce Momjian
Browse files

Properly mark initRectBox() as taking 'void' args

Was part of box type in SP-GiST index patch.

Reported-by: Emre Hasegeli
parent c8e81afc
Branches
Tags
No related merge requests found
...@@ -171,7 +171,7 @@ getRangeBox(BOX *box) ...@@ -171,7 +171,7 @@ getRangeBox(BOX *box)
* initialize the struct to cover the whole 4D space. * initialize the struct to cover the whole 4D space.
*/ */
static RectBox * static RectBox *
initRectBox() initRectBox(void)
{ {
RectBox *rect_box = (RectBox *) palloc(sizeof(RectBox)); RectBox *rect_box = (RectBox *) palloc(sizeof(RectBox));
double infinity = get_float8_infinity(); double infinity = get_float8_infinity();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment