aboutsummaryrefslogtreecommitdiff
path: root/src/testcurl
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2018-08-18 13:26:30 +0200
committerChristian Grothoff <christian@grothoff.org>2018-08-18 13:26:38 +0200
commit605e35bb6e2c9b29067b2fdf5d7d28ac8a475aba (patch)
tree8c8c539feb03117f3785213169b26c00d8288eb2 /src/testcurl
parentb4afd3fce6bd3bb8470385ca153e7a520c9ace0a (diff)
downloadlibmicrohttpd-605e35bb6e2c9b29067b2fdf5d7d28ac8a475aba.tar.gz
libmicrohttpd-605e35bb6e2c9b29067b2fdf5d7d28ac8a475aba.zip
style fixes
Diffstat (limited to 'src/testcurl')
-rw-r--r--src/testcurl/test_get_sendfile.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/testcurl/test_get_sendfile.c b/src/testcurl/test_get_sendfile.c
index fb040afe..6c44318a 100644
--- a/src/testcurl/test_get_sendfile.c
+++ b/src/testcurl/test_get_sendfile.c
@@ -596,7 +596,9 @@ main (int argc, char *const *argv)
596 free (sourcefile); 596 free (sourcefile);
597 return 1; 597 return 1;
598 } 598 }
599 fwrite (TESTSTR, strlen (TESTSTR), 1, f); 599 if (strlen (TESTSTR) !=
600 fwrite (TESTSTR, strlen (TESTSTR), 1, f))
601 abort ();
600 fclose (f); 602 fclose (f);
601 if (0 != curl_global_init (CURL_GLOBAL_WIN32)) 603 if (0 != curl_global_init (CURL_GLOBAL_WIN32))
602 return 2; 604 return 2;