This commit is contained in:
Viktor Szakats 2026-03-09 02:18:17 +01:00
parent b23dbd4448
commit b728aedbd8
No known key found for this signature in database

View file

@ -53,8 +53,8 @@ int main(int argc, const char **argv)
assert(result == CURLSSLSET_UNKNOWN_BACKEND);
for(i = 0; list[i]; i++)
printf("SSL backend #%d: '%s' (ID: %u)\n",
i, list[i]->name, list[i]->id);
printf("SSL backend #%d: '%s' (ID: %d)\n",
i, list[i]->name, (int)list[i]->id);
return 0;
}