Commit e03a2f7d authored by Clint George's avatar Clint George Committed by Greg Kroah-Hartman
Browse files

hangcheck-timer: Replace %Ld with %lld



Replace non-standard %Ld with %lld to ensure compliance with the kernel
coding style and potential formatting issues.

Signed-off-by: default avatarClint George <clintbgeorge@gmail.com>
Link: https://patch.msgid.link/20251111151340.9162-3-clintbgeorge@gmail.com


Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 75d19e36
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -142,7 +142,7 @@ static void hangcheck_fire(struct timer_list *unused)
	/*
	 * Enable to investigate delays in detail
	 */
	pr_debug("Hangcheck: called %Ld ns since last time (%Ld ns overshoot)\n",
	pr_debug("Hangcheck: called %lld ns since last time (%lld ns overshoot)\n",
			tsc_diff, tsc_diff - hangcheck_tick*TIMER_FREQ);
#endif
	mod_timer(&hangcheck_ticktock, jiffies + (hangcheck_tick*HZ));