diff options
| author | Bruce Evans <bde@FreeBSD.org> | 1998-06-28 21:05:48 +0000 |
|---|---|---|
| committer | Bruce Evans <bde@FreeBSD.org> | 1998-06-28 21:05:48 +0000 |
| commit | ce0cab88c13471be26f57864c6ee8a21d705e966 (patch) | |
| tree | ec815826f802d48f42b37c7e0b9929e1af880091 /bin | |
| parent | fe6f0b08248cb22e0574d5d69ee75a43dcb2ba84 (diff) | |
Notes
Diffstat (limited to 'bin')
| -rw-r--r-- | bin/ps/print.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/bin/ps/print.c b/bin/ps/print.c index 2813e9b3b302..97ce8f3b1df7 100644 --- a/bin/ps/print.c +++ b/bin/ps/print.c @@ -36,7 +36,7 @@ static char sccsid[] = "@(#)print.c 8.6 (Berkeley) 4/16/94"; #endif static const char rcsid[] = - "$Id: print.c,v 1.29 1998/06/28 18:19:13 bde Exp $"; + "$Id: print.c,v 1.30 1998/06/28 18:26:18 bde Exp $"; #endif /* not lint */ #include <sys/param.h> @@ -429,7 +429,8 @@ rssize(k, ve) v = ve->var; /* XXX don't have info about shared */ - (void)printf("%*d", v->width, pgtok(KI_EPROC(k)->e_vm.vm_rssize)); + (void)printf("%*lu", v->width, + (u_long)pgtok(KI_EPROC(k)->e_vm.vm_rssize)); } void |
