aboutsummaryrefslogtreecommitdiff
path: root/src/testzzuf/test_put.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/testzzuf/test_put.c')
-rw-r--r--src/testzzuf/test_put.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/testzzuf/test_put.c b/src/testzzuf/test_put.c
index 86f7b63a..3b60962a 100644
--- a/src/testzzuf/test_put.c
+++ b/src/testzzuf/test_put.c
@@ -376,5 +376,5 @@ main (int argc, char *const *argv)
376 if (errorCount != 0) 376 if (errorCount != 0)
377 fprintf (stderr, "Error (code: %u)\n", errorCount); 377 fprintf (stderr, "Error (code: %u)\n", errorCount);
378 curl_global_cleanup (); 378 curl_global_cleanup ();
379 return errorCount != 0; /* 0 == pass */ 379 return (0 == errorCount) ? 0 : 1; /* 0 == pass */
380} 380}