diff options
author | [email protected] <[email protected]> | 2010-11-30 13:52:14 -0800 |
---|---|---|
committer | Michal Marek <[email protected]> | 2010-12-14 17:05:08 +0100 |
commit | d52784eb3607bf887628742f99041b4f18d7d1de (patch) | |
tree | 755ec965e484b67ef8cdd47d68cc3c11a2c0ab55 | |
parent | de323f22a83b024b7432e813609c6efb74b1bbfc (diff) |
headers_check: Fix warning text
Fix the warning text too, per Randy.
Cc: Alexander Shishkin <[email protected]>
Cc: Michal Marek <[email protected]>
Cc: Randy Dunlap <[email protected]>
Cc: Stephen Hemminger <[email protected]>
Cc: WANG Cong <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Michal Marek <[email protected]>
-rw-r--r-- | scripts/headers_check.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/headers_check.pl b/scripts/headers_check.pl index e0e25a1c2c12..7957e7a5166a 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"; } } |