Commit 436bffac authored by Peter Ross's avatar Peter Ross

avutil/tests/random_seed: seeds[] is uint32_t, therefore use PRIX32 macro

squelch format type warning
parent be60dc21
......@@ -47,7 +47,7 @@ int main(void)
retry:;
}
if (retry >= 3) {
printf("rsf %d: FAIL at %d with %X\n", rsf, j, seeds[j]);
printf("rsf %d: FAIL at %d with %"PRIX32"\n", rsf, j, seeds[j]);
return 1;
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment