aboutsummaryrefslogtreecommitdiff
path: root/src/testzzuf/test_post.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/testzzuf/test_post.c')
-rw-r--r--src/testzzuf/test_post.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/testzzuf/test_post.c b/src/testzzuf/test_post.c
index 8377af06..bf1416da 100644
--- a/src/testzzuf/test_post.c
+++ b/src/testzzuf/test_post.c
@@ -412,5 +412,5 @@ main (int argc, char *const *argv)
412 if (errorCount != 0) 412 if (errorCount != 0)
413 fprintf (stderr, "Error (code: %u)\n", errorCount); 413 fprintf (stderr, "Error (code: %u)\n", errorCount);
414 curl_global_cleanup (); 414 curl_global_cleanup ();
415 return errorCount != 0; /* 0 == pass */ 415 return (0 == errorCount) ? 0 : 1; /* 0 == pass */
416} 416}