diff options
author | bde <bde@FreeBSD.org> | 1995-12-15 23:54:27 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1995-12-15 23:54:27 +0000 |
commit | 2e990299c67d7b5b4474da67d8ac4382b5332cb7 (patch) | |
tree | 1484bcc7f1ce4ed2d4da4a2a27e3824fd702cae9 /tools | |
parent | 3c6fecaa2db89256db010149f70dd598df11e983 (diff) | |
download | FreeBSD-src-2e990299c67d7b5b4474da67d8ac4382b5332cb7.zip FreeBSD-src-2e990299c67d7b5b4474da67d8ac4382b5332cb7.tar.gz |
The unref and undef counts in the summary were swapped.
Diffstat (limited to 'tools')
-rw-r--r-- | tools/tools/kernxref/kernxref.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/tools/kernxref/kernxref.sh b/tools/tools/kernxref/kernxref.sh index c499c2f..d3a7a59 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 } |