scripts: Use correct type for length when printing count for KEM KATs

This commit is contained in:
Tobias Brunner 2024-11-25 16:56:53 +01:00
parent 4de6bb3feb
commit b1858a9b9b

View File

@ -140,7 +140,7 @@ int main(int argc, char *argv[])
{
break;
}
fprintf(out, "/** count = %.*s */\n", value_len, value);
fprintf(out, "/** count = %.*s */\n", (int)value_len, value);
fprintf(out, "{\n");
fprintf(out, "\t.method = %s,\n", method);
count--;