scripts: Use correct type for length when printing count for KEM KATs
This commit is contained in:
@@ -140,7 +140,7 @@ int main(int argc, char *argv[])
|
|||||||
{
|
{
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
fprintf(out, "/** count = %.*s */\n", value_len, value);
|
fprintf(out, "/** count = %.*s */\n", (int)value_len, value);
|
||||||
fprintf(out, "{\n");
|
fprintf(out, "{\n");
|
||||||
fprintf(out, "\t.method = %s,\n", method);
|
fprintf(out, "\t.method = %s,\n", method);
|
||||||
count--;
|
count--;
|
||||||
|
|||||||
Reference in New Issue
Block a user