Skip to content

Commit

Permalink
stress-readahead: replace %jx with PRIxMAX
Browse files Browse the repository at this point in the history
Signed-off-by: Colin Ian King <[email protected]>
  • Loading branch information
ColinIanKing committed Jan 23, 2025
1 parent 0465c0f commit 16f29eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stress-readahead.c
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ PRAGMA_UNROLL_N(8)
baddata++;
}
if (UNLIKELY(baddata)) {
pr_fail("%s: error in data between 0x%jx and 0x%jx\n",
pr_fail("%s: error in data between 0x%" PRIxMAX " and 0x%" PRIxMAX "\n",
args->name,
(intmax_t)offsets[i],
(intmax_t)offsets[i] + BUF_SIZE - 1);
Expand Down

0 comments on commit 16f29eb

Please sign in to comment.