diff options
-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 | |||
66 | { | 66 | { |
67 | if ($line =~m/^(\s*extern|unsigned|char|short|int|long|void)\b/) { | 67 | if ($line =~m/^(\s*extern|unsigned|char|short|int|long|void)\b/) { |
68 | printf STDERR "$filename:$lineno: " . | 68 | printf STDERR "$filename:$lineno: " . |
69 | "userspace cannot call function or variable " . | 69 | "userspace cannot reference function or " . |
70 | "defined in the kernel\n"; | 70 | "variable defined in the kernel\n"; |
71 | } | 71 | } |
72 | } | 72 | } |
73 | 73 | ||