Skip to content

Commit

Permalink
fix string formatter warning
Browse files Browse the repository at this point in the history
  • Loading branch information
iceman1001 committed Dec 31, 2023
1 parent 91fad1d commit 08f3a10
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/src/cmddata.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit 08f3a10

Please sign in to comment.