mirror of
https://github.com/postgres/postgres.git
synced 2025-06-26 12:21:12 +03:00
Properly mark initRectBox() as taking 'void' args
Was part of box type in SP-GiST index patch. Reported-by: Emre Hasegeli
This commit is contained in:
@ -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();
|
||||||
|
Reference in New Issue
Block a user