Commit d52784eb3607bf887628742f99041b4f18d7d1de

Authored by akpm@linux-foundation.org
Committed by Michal Marek
1 parent de323f22a8

headers_check: Fix warning text

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>

Showing 1 changed file with 2 additions and 2 deletions Side-by-side Diff

scripts/headers_check.pl
... ... @@ -66,8 +66,8 @@
66 66 {
67 67 if ($line =~m/^(\s*extern|unsigned|char|short|int|long|void)\b/) {
68 68 printf STDERR "$filename:$lineno: " .
69   - "userspace cannot call function or variable " .
70   - "defined in the kernel\n";
  69 + "userspace cannot reference function or " .
  70 + "variable defined in the kernel\n";
71 71 }
72 72 }
73 73