aboutsummaryrefslogtreecommitdiff
path: root/src/testcurl/test_post_loop.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/testcurl/test_post_loop.c')
-rw-r--r--src/testcurl/test_post_loop.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/testcurl/test_post_loop.c b/src/testcurl/test_post_loop.c
index 927c867b..ec929904 100644
--- a/src/testcurl/test_post_loop.c
+++ b/src/testcurl/test_post_loop.c
@@ -690,5 +690,5 @@ main (int argc, char *const *argv)
690 if (errorCount != 0) 690 if (errorCount != 0)
691 fprintf (stderr, "Error (code: %u)\n", errorCount); 691 fprintf (stderr, "Error (code: %u)\n", errorCount);
692 curl_global_cleanup (); 692 curl_global_cleanup ();
693 return errorCount != 0; /* 0 == pass */ 693 return (0 == errorCount) ? 0 : 1; /* 0 == pass */
694} 694}