diff options
author | Konstantin Belousov <kib@FreeBSD.org> | 2009-03-02 18:53:30 +0000 |
---|---|---|
committer | Konstantin Belousov <kib@FreeBSD.org> | 2009-03-02 18:53:30 +0000 |
commit | 65067cc8b020a2a55018319816f8c6c2d9bcee18 (patch) | |
tree | 126cfd157183d3118e00026a6f63a55085a27d45 /usr.bin/ipcs | |
parent | 2883703e00a4a50e97f2ee18676d8cef1687f032 (diff) |
Notes
Diffstat (limited to 'usr.bin/ipcs')
-rw-r--r-- | usr.bin/ipcs/ipcs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ipcs/ipcs.c b/usr.bin/ipcs/ipcs.c index 67364d555dff..1fd943af110a 100644 --- a/usr.bin/ipcs/ipcs.c +++ b/usr.bin/ipcs/ipcs.c @@ -452,8 +452,8 @@ print_kshmptr(int i, int option, struct shmid_kernel *kshmptr) kshmptr->u.shm_nattch); if (option & BIGGEST) - printf(" %12d", - kshmptr->u.shm_segsz); + printf(" %12zu", + kshmptr->shm_bsegsz); if (option & PID) printf(" %12d %12d", |