]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
rtc: test: Fix invalid format specifier.
authorDavid Gow <davidgow@google.com>
Wed, 21 Feb 2024 09:27:18 +0000 (17:27 +0800)
committerSasha Levin <sashal@kernel.org>
Tue, 26 Mar 2024 22:19:18 +0000 (18:19 -0400)
commit01df80b3e4d5035baf3a907fa23878b9020c5308
tree8cc134d6345bf0928692afc673a925d11b73e79c
parent491ed9f9ebafc62c083187b89c35e46cb5198030
rtc: test: Fix invalid format specifier.

[ Upstream commit 8a904a3caa88118744062e872ae90f37748a8fd8 ]

'days' is a s64 (from div_s64), and so should use a %lld specifier.

This was found by extending KUnit's assertion macros to use gcc's
__printf attribute.

Fixes: 1d1bb12a8b18 ("rtc: Improve performance of rtc_time64_to_tm(). Add tests.")
Signed-off-by: David Gow <davidgow@google.com>
Tested-by: Guenter Roeck <linux@roeck-us.net>
Reviewed-by: Justin Stitt <justinstitt@google.com>
Acked-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/rtc/lib_test.c