]> granicus.if.org Git - postgis/commitdiff
Remove unused va_copy.
authorPaul Ramsey <pramsey@cleverelephant.ca>
Tue, 23 Feb 2010 21:41:52 +0000 (21:41 +0000)
committerPaul Ramsey <pramsey@cleverelephant.ca>
Tue, 23 Feb 2010 21:41:52 +0000 (21:41 +0000)
git-svn-id: http://svn.osgeo.org/postgis/trunk@5327 b70326c6-7e19-0410-871a-916f4a2858ee

liblwgeom/stringbuffer.c

index 51cf790e084cf81ce74cd3e608b7c60f67ebc309..d4c9c74a76fceda0ce5ba1af5cbc2cd61e04c374 100644 (file)
@@ -88,10 +88,8 @@ static void stringbuffer_avprintf(stringbuffer_t *sb, const char *fmt, va_list a
        int len = 0; /* Length of the output */
        int len0 = 0; /* Length of the output with null terminator */
        va_list ap2;
-       va_list ap3;
        
        va_copy(ap2, ap);
-       va_copy(ap3, ap);
        
        /* Print to our static buffer */
        len = vsnprintf(sb->buffer, STRINGBUFFER_WORKSIZE, fmt, ap);