aboutsummaryrefslogtreecommitdiff
path: root/tests/libtest/lib543.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/libtest/lib543.c')
-rw-r--r--tests/libtest/lib543.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/libtest/lib543.c b/tests/libtest/lib543.c
index 90aed2193..6d2532d12 100644
--- a/tests/libtest/lib543.c
+++ b/tests/libtest/lib543.c
@@ -36,7 +36,8 @@ int test(char *URL)
char *s;
(void)URL;
- if((easy = curl_easy_init()) == NULL) {
+ easy = curl_easy_init();
+ if(!easy) {
fprintf(stderr, "curl_easy_init() failed\n");
return TEST_ERR_MAJOR_BAD;
}