Avoid unused assignment

This commit is contained in:
Viktor Dukhovni
2015-04-10 02:23:22 +00:00
parent 0280a9e930
commit dbc95a3e53

View File

@@ -63,7 +63,6 @@ main(int argc, char **argv)
for (i = 0; i < sizeof(tests)/sizeof(tests[0]); ++i) { for (i = 0; i < sizeof(tests)/sizeof(tests[0]); ++i) {
char buf[256]; char buf[256];
int val = parse_bytes (tests[i].str, tests[i].def_unit); int val = parse_bytes (tests[i].str, tests[i].def_unit);
int len;
if (val != tests[i].val) { if (val != tests[i].val) {
printf ("parse_bytes (%s, %s) = %d != %d\n", printf ("parse_bytes (%s, %s) = %d != %d\n",
@@ -73,7 +72,7 @@ main(int argc, char **argv)
++ret; ++ret;
} }
if (tests[i].canonicalp) { if (tests[i].canonicalp) {
len = unparse_bytes (tests[i].val, buf, sizeof(buf)); (void) unparse_bytes (tests[i].val, buf, sizeof(buf));
if (strcmp (tests[i].str, buf) != 0) { if (strcmp (tests[i].str, buf) != 0) {
printf ("unparse_bytes (%d) = \"%s\" != \"%s\"\n", printf ("unparse_bytes (%d) = \"%s\" != \"%s\"\n",
tests[i].val, buf, tests[i].str); tests[i].val, buf, tests[i].str);