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)
Thu, Apr 16, 2:44 AM
Unknown Object (File)
Wed, Apr 15, 11:03 PM
Unknown Object (File)
Tue, Apr 14, 4:43 AM
Unknown Object (File)
Thu, Apr 9, 4:24 PM
Unknown Object (File)
Thu, Apr 9, 5:40 AM
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
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