mirror of
https://github.com/strongswan/strongswan.git
synced 2025-10-04 00:00:14 -04:00
scripts: Use correct type for length when printing count
for KEM KATs
This commit is contained in:
parent
4de6bb3feb
commit
b1858a9b9b
@ -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--;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user