aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/modstat/modstat.c
diff options
context:
space:
mode:
authorBruce Evans <bde@FreeBSD.org>1998-02-12 23:58:54 +0000
committerBruce Evans <bde@FreeBSD.org>1998-02-12 23:58:54 +0000
commit5f61dae3477376a1ffd5985ab57336293faa6b25 (patch)
tree7fdfe7d2ea9bf82ccf88ffce6b0d7833f319d37c /usr.bin/modstat/modstat.c
parent237ca38d864b964744fa0e8f491e0c32a992a917 (diff)
downloadsrc-5f61dae3477376a1ffd5985ab57336293faa6b25.tar.gz
src-5f61dae3477376a1ffd5985ab57336293faa6b25.zip
Fixed a comment. The module size is (unfortunately) in K, but it is not
in pages.
Notes
Notes: svn path=/head/; revision=33288
Diffstat (limited to 'usr.bin/modstat/modstat.c')
-rw-r--r--usr.bin/modstat/modstat.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/modstat/modstat.c b/usr.bin/modstat/modstat.c
index 14eb7843994d..42ebbcd08be5 100644
--- a/usr.bin/modstat/modstat.c
+++ b/usr.bin/modstat/modstat.c
@@ -32,7 +32,7 @@
#ifndef lint
static const char rcsid[] =
- "$Id$";
+ "$Id: modstat.c,v 1.9 1997/07/28 07:01:02 charnier Exp $";
#endif /* not lint */
#include <a.out.h>
@@ -101,7 +101,7 @@ dostat(devfd, modnum, modname)
sbuf.id, /* module id */
sbuf.offset, /* offset into modtype struct */
sbuf.area, /* address module loaded at */
- sbuf.size, /* size in pages(K) */
+ sbuf.size, /* size in K */
sbuf.private, /* kernel address of private area */
sbuf.ver, /* Version; always 1 for now */
sbuf.name /* name from private area */