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)
Sat, Mar 28, 2:26 PM
Unknown Object (File)
Fri, Mar 27, 4:51 AM
Unknown Object (File)
Wed, Mar 25, 12:36 AM
Unknown Object (File)
Mon, Mar 23, 7:13 AM
Unknown Object (File)
Mon, Mar 9, 11:09 AM
Unknown Object (File)
Thu, Mar 5, 6:45 PM
Unknown Object (File)
Feb 19 2026, 6:57 AM
Unknown Object (File)
Feb 17 2026, 12:51 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