From: Linus Torvalds Date: Thu, 16 Oct 2008 22:32:46 +0000 (-0700) Subject: Fix kernel/softirq.c printk format warning properly X-Git-Tag: v2.6.28-rc1~270 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1c95e1b69073cff5ff179e592fa1a1e182c78a17;p=pandora-kernel.git Fix kernel/softirq.c printk format warning properly This fixes the broken 77af7e3403e7314c47b0c07fbc5e4ef21d939532 ("softirq, warning fix: correct a format to avoid a warning") fix correctly. The type of a pointer subtraction is not "int", nor is it "long". It can be either (or something else). It's "ptrdiff_t", and the printk format for it is "%td". Cc: Frederic Weisbecker Cc: Ingo Molnar Signed-off-by: Linus Torvalds --- Reading git-diff-tree failed