Skip to content

Commit

Permalink
Fix warning for printf argument.
Browse files Browse the repository at this point in the history
  • Loading branch information
mbroz committed Jun 6, 2024
1 parent 97c5f47 commit b19170e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/luks2/luks2_json_format.c
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,7 @@ int LUKS2_wipe_header_areas(struct crypt_device *cd,
length = device_size_bytes;

log_dbg(cd, "Wiping LUKS areas (0x%06" PRIx64 " - 0x%06" PRIx64") with zeroes.",
0, length);
0ULL, length);

r = crypt_wipe_device(cd, crypt_metadata_device(cd), CRYPT_WIPE_ZERO, 0,
length, wipe_block, NULL, NULL);
Expand Down

0 comments on commit b19170e

Please sign in to comment.