mirror of
https://github.com/curl/curl.git
synced 2026-07-25 14:37:17 +03:00
fixes
This commit is contained in:
parent
52e5d7145e
commit
d9d073d0eb
2 changed files with 5 additions and 5 deletions
|
|
@ -2054,7 +2054,7 @@ static int huge(void)
|
|||
if(!rc) {
|
||||
curl_url_get(urlp, part[i], &partp, 0);
|
||||
if(!partp || strcmp(partp, &bigpart[1 - (i == 4)])) {
|
||||
curl_mprintf("URL %d part %u: failure\n", i, part[i]);
|
||||
curl_mprintf("URL %d part %d: failure\n", i, (int)part[i]);
|
||||
error++;
|
||||
}
|
||||
curl_free(partp);
|
||||
|
|
|
|||
|
|
@ -37,12 +37,12 @@ static CURLcode test_lib1918(const char *URL)
|
|||
curl_easy_option_by_id(o->id);
|
||||
|
||||
if(ename->id != o->id) {
|
||||
curl_mprintf("name lookup id %u does not match %u\n",
|
||||
ename->id, o->id);
|
||||
curl_mprintf("name lookup id %d does not match %d\n",
|
||||
(int)ename->id, (int)o->id);
|
||||
}
|
||||
else if(eid->id != o->id) {
|
||||
curl_mprintf("ID lookup %u does not match %u\n",
|
||||
ename->id, o->id);
|
||||
curl_mprintf("ID lookup %d does not match %d\n",
|
||||
(int)ename->id, (int)o->id);
|
||||
}
|
||||
}
|
||||
curl_global_cleanup();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue