aboutsummaryrefslogtreecommitdiff
path: root/libbb/procps.c
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2007-06-21 07:09:18 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2007-06-21 07:09:18 +0000
commit88976d00d8ea2540f987fcd001e140bae895df0f (patch)
treeb5ce2180e54064648c5ac8908de8d1f2321194c4 /libbb/procps.c
parent14923db72fe6e97d9c596236841a9eb6338231db (diff)
downloadbusybox-88976d00d8ea2540f987fcd001e140bae895df0f.tar.gz
remove extra ')'
Diffstat (limited to 'libbb/procps.c')
-rw-r--r--libbb/procps.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/procps.c b/libbb/procps.c
index 10ddabf94..9f5a4c062 100644
--- a/libbb/procps.c
+++ b/libbb/procps.c
@@ -226,7 +226,7 @@ procps_status_t* procps_scan(procps_status_t* sp, int flags)
sp->vsz = vsz >> 10; /* vsize is in bytes and we want kb */
sp->rss = rss >> 10;
sp->tty_major = (tty >> 8) & 0xfff;
- sp->tty_minor = (tty & 0xff) | ((tty >> 12) & 0xfff00));
+ sp->tty_minor = (tty & 0xff) | ((tty >> 12) & 0xfff00);
#else
/* This costs ~100 bytes more but makes top faster by 20%
* If you run 10000 processes, this may be important for you */