Skip to content

Commit e03a2f7

Browse files
iamclintgeorgegregkh
authored andcommitted
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: Clint George <clintbgeorge@gmail.com> Link: https://patch.msgid.link/20251111151340.9162-3-clintbgeorge@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1 parent 75d19e3 commit e03a2f7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

drivers/char/hangcheck-timer.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ static void hangcheck_fire(struct timer_list *unused)
142142
/*
143143
* Enable to investigate delays in detail
144144
*/
145-
pr_debug("Hangcheck: called %Ld ns since last time (%Ld ns overshoot)\n",
145+
pr_debug("Hangcheck: called %lld ns since last time (%lld ns overshoot)\n",
146146
tsc_diff, tsc_diff - hangcheck_tick*TIMER_FREQ);
147147
#endif
148148
mod_timer(&hangcheck_ticktock, jiffies + (hangcheck_tick*HZ));

0 commit comments

Comments
 (0)