X-Git-Url: https://pd.if.org/git/?p=pdclib;a=blobdiff_plain;f=functions%2Fstdio%2Fvsnprintf.c;h=165ed54ce3a1fb600e317a383c7075edbd955a6f;hp=9768c0a02504d45b9cf74a45b3ce51a8771c8d98;hb=e72505f84aa8d8730e46d955a2722af361112e4f;hpb=07810dbd8f3e21618208b923e293715774c80ade diff --git a/functions/stdio/vsnprintf.c b/functions/stdio/vsnprintf.c index 9768c0a..165ed54 100644 --- a/functions/stdio/vsnprintf.c +++ b/functions/stdio/vsnprintf.c @@ -54,22 +54,22 @@ int vsnprintf( char * _PDCLIB_restrict s, size_t n, const char * _PDCLIB_restric #include #include -static int testprintf( char * s, size_t n, const char * format, ... ) +static int testprintf( char * s, const char * format, ... ) { int i; va_list arg; va_start( arg, format ); - i = vsnprintf( s, n, format, arg ); + i = vsnprintf( s, 100, format, arg ); va_end( arg ); return i; } -#define TESTCASE_SPRINTF( x ) if ( strcmp( buffer, x ) == 0 ) {} \ - else { TEST_RESULTS += 1; printf( "FAILED: " __FILE__ ", line %d - \"%s\" != %s\n", __LINE__, buffer, #x ); } +#define TESTCASE_SPRINTF( x ) if ( strcmp( target, x ) == 0 ) {} \ + else { TEST_RESULTS += 1; printf( "FAILED: " __FILE__ ", line %d - \"%s\" != %s\n", __LINE__, target, #x ); } int main( void ) { - char buffer[100]; + char target[100]; #include "printf_testcases.incl" return TEST_RESULTS; }