Loading lib/url.c +1 −1 Original line number Original line Diff line number Diff line Loading @@ -758,7 +758,7 @@ CURLcode Curl_disconnect(struct Curl_easy *data, * are other users of it * are other users of it */ */ if(CONN_INUSE(conn) && !dead_connection) { if(CONN_INUSE(conn) && !dead_connection) { DEBUGF(infof(data, "Curl_disconnect when inuse: %d\n", CONN_INUSE(conn))); DEBUGF(infof(data, "Curl_disconnect when inuse: %zu\n", CONN_INUSE(conn))); return CURLE_OK; return CURLE_OK; } } Loading tests/libtest/libntlmconnect.c +1 −1 Original line number Original line Diff line number Diff line Loading @@ -158,7 +158,7 @@ int test(char *url) multi_perform(multi, &running); multi_perform(multi, &running); fprintf(stderr, "%s:%d running %ld state %d\n", fprintf(stderr, "%s:%d running %d state %d\n", __FILE__, __LINE__, running, state); __FILE__, __LINE__, running, state); abort_on_test_timeout(); abort_on_test_timeout(); Loading Loading
lib/url.c +1 −1 Original line number Original line Diff line number Diff line Loading @@ -758,7 +758,7 @@ CURLcode Curl_disconnect(struct Curl_easy *data, * are other users of it * are other users of it */ */ if(CONN_INUSE(conn) && !dead_connection) { if(CONN_INUSE(conn) && !dead_connection) { DEBUGF(infof(data, "Curl_disconnect when inuse: %d\n", CONN_INUSE(conn))); DEBUGF(infof(data, "Curl_disconnect when inuse: %zu\n", CONN_INUSE(conn))); return CURLE_OK; return CURLE_OK; } } Loading
tests/libtest/libntlmconnect.c +1 −1 Original line number Original line Diff line number Diff line Loading @@ -158,7 +158,7 @@ int test(char *url) multi_perform(multi, &running); multi_perform(multi, &running); fprintf(stderr, "%s:%d running %ld state %d\n", fprintf(stderr, "%s:%d running %d state %d\n", __FILE__, __LINE__, running, state); __FILE__, __LINE__, running, state); abort_on_test_timeout(); abort_on_test_timeout(); Loading