The unref and undef counts in the summary were swapped.

This commit is contained in:
Bruce Evans 1995-12-15 23:54:27 +00:00
parent 82b945084b
commit fb9406cc5c
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=12875

View File

@ -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
}