From 2b175a256086d36e445096a3fd43b1374907b18a Mon Sep 17 00:00:00 2001
From: Sandro Santilli <strk@keybit.net>
Date: Mon, 21 Nov 2011 12:10:25 +0000
Subject: [PATCH] Hush warning about missing prototype.

This is really a commit intended to amend the previous for the sake
of pointing to the correct bug being closed by it: #1273 (not #1023
which is more complex)

git-svn-id: http://svn.osgeo.org/postgis/trunk@8204 b70326c6-7e19-0410-871a-916f4a2858ee
---
 liblwgeom/g_serialized.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/liblwgeom/g_serialized.c b/liblwgeom/g_serialized.c
index ede41872c..614f6a33f 100644
--- a/liblwgeom/g_serialized.c
+++ b/liblwgeom/g_serialized.c
@@ -126,7 +126,8 @@ char* gserialized_to_string(const GSERIALIZED *g)
 	return lwgeom_to_wkt(lwgeom_from_gserialized(g), WKT_ISO, 12, 0);
 }
 
-void gbox_float_round(GBOX *gbox)
+/* TODO: expose to internal API ? */
+static void gbox_float_round(GBOX *gbox)
 {
 	gbox->xmin = next_float_down(gbox->xmin);
 	gbox->xmax = next_float_up(gbox->xmax);
-- 
2.40.0