mirror of
https://git.busybox.net/busybox
synced 2026-01-31 16:43:21 +00:00
remove extra ')'
This commit is contained in:
parent
14923db72f
commit
88976d00d8
1 changed files with 1 additions and 1 deletions
|
|
@ -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 */
|
||||
|
|
|
|||
Loading…
Reference in a new issue