mirror of
https://github.com/curl/curl.git
synced 2026-08-26 17:53:33 +03:00
fixes
This commit is contained in:
parent
1a712a55c9
commit
9b3d8da999
2 changed files with 2 additions and 2 deletions
|
|
@ -53,7 +53,7 @@ int main(int argc, const char **argv)
|
|||
assert(result == CURLSSLSET_UNKNOWN_BACKEND);
|
||||
|
||||
for(i = 0; list[i]; i++)
|
||||
printf("SSL backend #%d: '%s' (ID: %d)\n",
|
||||
printf("SSL backend #%d: '%s' (ID: %u)\n",
|
||||
i, list[i]->name, list[i]->id);
|
||||
|
||||
return 0;
|
||||
|
|
|
|||
|
|
@ -94,7 +94,7 @@ retry:
|
|||
else {
|
||||
/* some other frame arrived. */
|
||||
fprintf(stderr, "ws: received frame of %u bytes rflags %x\n",
|
||||
(unsigned int)rlen, meta->flags);
|
||||
(unsigned int)rlen, (unsigned int)meta->flags);
|
||||
goto retry;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue