]> granicus.if.org Git - postgis/commitdiff
Hush warning about missing prototype.
authorSandro Santilli <strk@keybit.net>
Mon, 21 Nov 2011 12:10:25 +0000 (12:10 +0000)
committerSandro Santilli <strk@keybit.net>
Mon, 21 Nov 2011 12:10:25 +0000 (12:10 +0000)
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

index ede41872c95e329488a2e1b308c21c3ce642d523..614f6a33ff387c7bf077bee97143bc6fd1f097e4 100644 (file)
@@ -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);