aboutsummaryrefslogtreecommitdiff
path: root/src/testcurl/test_get_response_cleanup.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/testcurl/test_get_response_cleanup.c')
-rw-r--r--src/testcurl/test_get_response_cleanup.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/testcurl/test_get_response_cleanup.c b/src/testcurl/test_get_response_cleanup.c
index bdb83e2d..7e0af24f 100644
--- a/src/testcurl/test_get_response_cleanup.c
+++ b/src/testcurl/test_get_response_cleanup.c
@@ -475,5 +475,5 @@ main (int argc, char *const *argv)
475 errorCount += testExternalGet (); 475 errorCount += testExternalGet ();
476 if (errorCount != 0) 476 if (errorCount != 0)
477 fprintf (stderr, "Error (code: %u)\n", errorCount); 477 fprintf (stderr, "Error (code: %u)\n", errorCount);
478 return errorCount != 0; /* 0 == pass */ 478 return (0 == errorCount) ? 0 : 1; /* 0 == pass */
479} 479}