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

This commit is contained in:
Tobias Brunner
2024-11-27 10:12:56 +01:00
parent 4de6bb3feb
commit b1858a9b9b
+1 -1
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--;