fix string formatter warning

This commit is contained in:
iceman1001
2023-12-31 10:44:57 +01:00
parent 91fad1dfa1
commit 08f3a105c8
+1 -1
View File
@@ -862,7 +862,7 @@ int AutoCorrelate(const int *in, int *out, size_t len, size_t window, bool SaveG
int distance = -1;
for (size_t i = 0; i < ARRAYLEN(peaks); ++i) {
PrintAndLogEx(DEBUG, "%zu | %d", i, peaks[i]);
PrintAndLogEx(DEBUG, "%zu | %zu", i, peaks[i]);
if (peaks[i] < 128) {
continue;
}