This commit is contained in:
Viktor Szakats 2026-03-09 01:02:04 +01:00
parent 1a712a55c9
commit 9b3d8da999
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View file

@ -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;

View file

@ -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;
}
}