]> granicus.if.org Git - php/commitdiff
Fix interbase va_start
authorJoshua Rogers <git@internot.info>
Mon, 26 Jan 2015 22:50:16 +0000 (09:50 +1100)
committerJoshua Rogers <git@internot.info>
Mon, 26 Jan 2015 22:50:16 +0000 (09:50 +1100)
ext/interbase/interbase.c

index 8f88d6017ad6bc0723f52401b60912d8f26c1cc0..c12e045dc3f849dac80524ea4631237edb954cf7 100644 (file)
@@ -523,11 +523,7 @@ void _php_ibase_module_error(char *msg, ...) /* {{{ */
 {
        va_list ap;
 
-#ifdef ZTS
-       va_start(ap, );
-#else
        va_start(ap, msg);
-#endif
 
        /* vsnprintf NUL terminates the buf and writes at most n-1 chars+NUL */
        vsnprintf(IBG(errmsg), MAX_ERRMSG, msg, ap);