Skip to content

Commit

Permalink
headers_check: Fix warning text
Browse files Browse the repository at this point in the history
Fix the warning text too, per Randy.

Cc: Alexander Shishkin <virtuoso@slind.org>
Cc: Michal Marek <mmarek@suse.cz>
Cc: Randy Dunlap <randy.dunlap@oracle.com>
Cc: Stephen Hemminger <shemminger@vyatta.com>
Cc: WANG Cong <amwang@redhat.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Michal Marek <mmarek@suse.cz>
  • Loading branch information
akpm00 authored and michal42 committed Dec 14, 2010
1 parent de323f2 commit d52784e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/headers_check.pl
Expand Up @@ -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";
}
}

Expand Down

0 comments on commit d52784e

Please sign in to comment.