From fb9406cc5c09d2cbcfbcbb4081cf81ae74392154 Mon Sep 17 00:00:00 2001 From: Bruce Evans Date: Fri, 15 Dec 1995 23:54:27 +0000 Subject: [PATCH] The unref and undef counts in the summary were swapped. --- tools/tools/kernxref/kernxref.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/tools/kernxref/kernxref.sh b/tools/tools/kernxref/kernxref.sh index c499c2fafae7..d3a7a59c308b 100644 --- a/tools/tools/kernxref/kernxref.sh +++ b/tools/tools/kernxref/kernxref.sh @@ -7,7 +7,7 @@ # this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp # ---------------------------------------------------------------------------- # -# $Id: kernxref.sh,v 1.2 1995/11/06 16:51:45 phk Exp $ +# $Id: kernxref.sh,v 1.4 1995/12/15 13:29:32 phk Exp $ # # This shellscript will make a cross reference of the symbols of the LINT # kernel. @@ -87,8 +87,8 @@ END { } END { printf "Total symbols: %5d\n",N1+N2+N3 - printf "undef symbols: %5d\n",N1 - printf "unref symbols: %5d\n",N2 + printf "unref symbols: %5d\n",N1 + printf "undef symbols: %5d\n",N2 printf "1 ref symbols: %5d\n",N4 printf "2 ref symbols: %5d\n",N5 }