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)
Mon, Nov 17, 12:38 AM
Unknown Object (File)
Sun, Nov 16, 7:44 AM
Unknown Object (File)
Sun, Nov 16, 3:52 AM
Unknown Object (File)
Sun, Nov 16, 3:50 AM
Unknown Object (File)
Sun, Nov 16, 12:59 AM
Unknown Object (File)
Sun, Nov 9, 10:14 PM
Unknown Object (File)
Sun, Oct 26, 9:06 AM
Unknown Object (File)
Sun, Oct 26, 9:06 AM
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 Passed
Unit
No Test Coverage
Build Status
Buildable 10597
Build 11003: arc lint + arc unit