Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d52784eb authored by Andrew Morton's avatar Andrew Morton Committed by Michal Marek
Browse files

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: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarMichal Marek <mmarek@suse.cz>
parent de323f22
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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";
	}
}