]> granicus.if.org Git - postgis/commitdiff
Fix syntax error.
authorPaul Ramsey <pramsey@cleverelephant.ca>
Mon, 29 Mar 2010 20:03:35 +0000 (20:03 +0000)
committerPaul Ramsey <pramsey@cleverelephant.ca>
Mon, 29 Mar 2010 20:03:35 +0000 (20:03 +0000)
git-svn-id: http://svn.osgeo.org/postgis/trunk@5469 b70326c6-7e19-0410-871a-916f4a2858ee

liblwgeom/stringbuffer.c

index e9ed5c971112afdb10655cbd5acc89663dd32cb5..6d516827fd03455be4d25889baf58f16407ba660 100644 (file)
@@ -190,7 +190,7 @@ static int stringbuffer_avprintf(stringbuffer_t *s, const char *fmt, va_list ap)
                /* Printing error? Error! */
                if( len < 0 ) return len;
                /* Too long still? Error! */
-               if( len >= maxlen ) return -1
+               if( len >= maxlen ) return -1;
        }
 
        /* Move end pointer forward and return. */