From 0505e74fee0466b07e3229fda41a645b55384d10 Mon Sep 17 00:00:00 2001 From: Paul Ramsey Date: Tue, 23 Feb 2010 21:41:52 +0000 Subject: [PATCH] Remove unused va_copy. git-svn-id: http://svn.osgeo.org/postgis/trunk@5327 b70326c6-7e19-0410-871a-916f4a2858ee --- liblwgeom/stringbuffer.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/liblwgeom/stringbuffer.c b/liblwgeom/stringbuffer.c index 51cf790e0..d4c9c74a7 100644 --- a/liblwgeom/stringbuffer.c +++ b/liblwgeom/stringbuffer.c @@ -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); -- 2.40.0