diff options
| author | Bruce Evans <bde@FreeBSD.org> | 1998-07-06 21:01:54 +0000 |
|---|---|---|
| committer | Bruce Evans <bde@FreeBSD.org> | 1998-07-06 21:01:54 +0000 |
| commit | 22694ebad57c49178f28bcc781d8ee9eb5868dd8 (patch) | |
| tree | ef3eba30b83841c253ee8676afea71ed9c896f0c /usr.bin/size | |
| parent | b45d09e830251ff82c05a1bdcd1349a94a2a5301 (diff) | |
Notes
Diffstat (limited to 'usr.bin/size')
| -rw-r--r-- | usr.bin/size/size.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/size/size.c b/usr.bin/size/size.c index 50fc31407416..69322d34b05d 100644 --- a/usr.bin/size/size.c +++ b/usr.bin/size/size.c @@ -42,7 +42,7 @@ static const char copyright[] = static char sccsid[] = "@(#)size.c 8.2 (Berkeley) 12/9/93"; #endif static const char rcsid[] = - "$Id$"; + "$Id: size.c,v 1.3 1997/08/11 07:28:19 charnier Exp $"; #endif /* not lint */ #include <sys/param.h> @@ -109,8 +109,8 @@ show(count, name) (void)printf("text\tdata\tbss\tdec\thex\n"); } total = head.a_text + head.a_data + head.a_bss; - (void)printf("%lu\t%lu\t%lu\t%lu\t%lx", head.a_text, head.a_data, - head.a_bss, total, total); + (void)printf("%lu\t%lu\t%lu\t%lu\t%lx", (u_long)head.a_text, + (u_long)head.a_data, (u_long)head.a_bss, total, total); if (count > 1) (void)printf("\t%s", name); (void)printf("\n"); |
