]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
hangcheck-timer: Replace %Ld with %lld
authorClint George <clintbgeorge@gmail.com>
Tue, 11 Nov 2025 15:13:39 +0000 (20:43 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 26 Nov 2025 14:11:15 +0000 (15:11 +0100)
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>
drivers/char/hangcheck-timer.c

index 21ef8a6a04637202a62de4b40bcaa164ce0da3d1..ff141fdb437aa653eac17d3df58df6aaedc05cc3 100644 (file)
@@ -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));