]> pd.if.org Git - pdclib/blobdiff - functions/stdio/sscanf.c
No more errors from _PDCLIB_scan tests. Yay...
[pdclib] / functions / stdio / sscanf.c
index 343f8ece90822ef0023a16083d7933c79c0cc878..477ed67197842bd7db6b5e92b031d5d25362b6a5 100644 (file)
@@ -1544,7 +1544,9 @@ void suite_five()
     // missing on first character
     memset( buffer, '\0', BUFSIZE );
     int n;
-    CHECK_EQUAL( sscanf( string + 0, "%[b]%n", buffer, &n ), 0 );
+    int rc_ = sscanf( string + 0, "%[b]%n", buffer, &n );
+    CHECK_EQUAL( rc_, 0 );
+    //CHECK_EQUAL( sscanf( string + 0, "%[b]%n", buffer, &n ), 0 );
     CHECK_FALSE( memcmp( buffer, "", 1 ) );
     }
     {