Page MenuHomeFreeBSD

Fix printf format warning in zfs_module.c
ClosedPublic

Authored by dim on Jul 20 2017, 7:33 PM.
Tags
None
Referenced Files
Unknown Object (File)
Feb 19 2024, 7:16 PM
Unknown Object (File)
Dec 20 2023, 3:58 AM
Unknown Object (File)
Sep 15 2023, 9:45 AM
Unknown Object (File)
Aug 27 2023, 6:44 AM
Unknown Object (File)
Aug 12 2023, 9:13 PM
Unknown Object (File)
Jun 26 2023, 1:55 PM
Unknown Object (File)
May 4 2023, 9:20 PM
Subscribers

Details

Summary

Clang 5.0.0 got better warnings about print format strings using %zd,
and this leads to the following -Werror warning on arm:

sys/boot/efi/boot1/zfs_module.c:186:18: error: format specifies type 'ssize_t' (aka 'int') but the argument has type 'off_t' (aka 'long long') [-Werror,-Wformat]
                    "(%lu)\n", st.st_size, spa->spa_name, filepath, EFI_ERROR_CODE(status));
                               ^~~~~~~~~~

Fix this by casting off_t arguments to intmax_t, and using %jd
instead.

Diff Detail

Repository
rS FreeBSD src repository - subversion
Lint
Lint Not Applicable
Unit
Tests Not Applicable