remove warning for string formatter

This commit is contained in:
iceman1001
2023-07-29 10:42:18 +02:00
parent 2c0e0454de
commit 93c17d5727
+1 -1
View File
@@ -265,7 +265,7 @@ int main(int argc, char* const argv[]) {
if (keyCount > 0) {
for (i = 0; i < keyCount; i++) {
printf("Key%d: %llx\r\n", i + 1, keys[i]);
printf("Key %d... %" PRIx64 " \r\n", i + 1, keys[i]);
fflush(stdout);
}
}