From 5f61dae3477376a1ffd5985ab57336293faa6b25 Mon Sep 17 00:00:00 2001 From: Bruce Evans Date: Thu, 12 Feb 1998 23:58:54 +0000 Subject: [PATCH] Fixed a comment. The module size is (unfortunately) in K, but it is not in pages. --- usr.bin/modstat/modstat.c | 4 ++-- 1 file 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 @@ -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 */