diff options
author | bde <bde@FreeBSD.org> | 1998-02-12 23:58:54 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1998-02-12 23:58:54 +0000 |
commit | 4358bb1ae69cad3b9bbe53ef52e660530136f849 (patch) | |
tree | c99f3e03666c4b8a8f89e2acef1afd5b965b93a3 /usr.bin/modstat | |
parent | 0b6b54525fcf87554de5abc7609ab1559e29f757 (diff) | |
download | FreeBSD-src-4358bb1ae69cad3b9bbe53ef52e660530136f849.zip FreeBSD-src-4358bb1ae69cad3b9bbe53ef52e660530136f849.tar.gz |
Fixed a comment. The module size is (unfortunately) in K, but it is not
in pages.
Diffstat (limited to 'usr.bin/modstat')
-rw-r--r-- | usr.bin/modstat/modstat.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/modstat/modstat.c b/usr.bin/modstat/modstat.c index 14eb784..42ebbcd 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 */ |