diff options
Diffstat (limited to 'tests/gd2')
-rw-r--r-- | tests/gd2/gd2_read.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/tests/gd2/gd2_read.c b/tests/gd2/gd2_read.c index 94fe069..8ce8bd1 100644 --- a/tests/gd2/gd2_read.c +++ b/tests/gd2/gd2_read.c @@ -5,7 +5,7 @@ int main(int argc, char *argv[]) { - int error, i = 0; + int error = 0, i = 0; gdImagePtr im, exp; FILE *fp; char *path[] = { @@ -40,8 +40,6 @@ int main(int argc, char *argv[]) gdTestErrorMsg("image %s differs from expected result\n", path[i]); gdImageDestroy(im); error = 1; - } else { - error = 0; } if (exp) { gdImageDestroy(exp); @@ -52,8 +50,6 @@ int main(int argc, char *argv[]) gdTestErrorMsg("image %s should have failed to be loaded\n", path[i]); gdImageDestroy(im); error = 1; - } else { - error = 0; } } i++; |