time/kunit: Use correct format specifier
authorDavid Gow <davidgow@google.com>
Wed, 21 Feb 2024 09:27:17 +0000 (17:27 +0800)
committerThomas Gleixner <tglx@linutronix.de>
Wed, 21 Feb 2024 11:00:42 +0000 (12:00 +0100)
commite0a1284b293bdf91a68a6d1a0479ad476d0d8ec2
tree3e6b7b6a82a8987376dacf0c4b2d3fff8dc53b1b
parent56145a0f84e8862aeb3b36d6e21349bb4dd64269
time/kunit: Use correct format specifier

'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: 276010551664 ("time: Improve performance of time64_to_tm()")
Signed-off-by: David Gow <davidgow@google.com>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Link: https://lore.kernel.org/r/20240221092728.1281499-5-davidgow@google.com
kernel/time/time_test.c