From: akpm@linux-foundation.org Date: Tue, 30 Nov 2010 21:52:14 +0000 (-0800) Subject: headers_check: Fix warning text X-Git-Tag: accepted/tizen/common/20141203.182822~8299^2~5 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d52784eb3607bf887628742f99041b4f18d7d1de;p=platform%2Fkernel%2Flinux-arm64.git headers_check: Fix warning text Fix the warning text too, per Randy. Cc: Alexander Shishkin Cc: Michal Marek Cc: Randy Dunlap Cc: Stephen Hemminger Cc: WANG Cong Signed-off-by: Andrew Morton Signed-off-by: Michal Marek --- diff --git a/scripts/headers_check.pl b/scripts/headers_check.pl index e0e25a1..7957e7a 100644 --- a/scripts/headers_check.pl +++ b/scripts/headers_check.pl @@ -66,8 +66,8 @@ sub check_declarations { if ($line =~m/^(\s*extern|unsigned|char|short|int|long|void)\b/) { printf STDERR "$filename:$lineno: " . - "userspace cannot call function or variable " . - "defined in the kernel\n"; + "userspace cannot reference function or " . + "variable defined in the kernel\n"; } }