mirror of
https://github.com/sheumann/hush.git
synced 2024-12-23 05:29:58 +00:00
ps: fix build failure in !DESKTOP case
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
parent
2fb8d0dee9
commit
42be921d48
@ -655,9 +655,9 @@ int ps_main(int argc UNUSED_PARAM, char **argv UNUSED_PARAM)
|
|||||||
time_t now = now;
|
time_t now = now;
|
||||||
long uptime;
|
long uptime;
|
||||||
#endif
|
#endif
|
||||||
int opts = 0;
|
|
||||||
/* If we support any options, parse argv */
|
/* If we support any options, parse argv */
|
||||||
#if ENABLE_SELINUX || ENABLE_FEATURE_SHOW_THREADS || ENABLE_FEATURE_PS_WIDE || ENABLE_FEATURE_PS_LONG
|
#if ENABLE_SELINUX || ENABLE_FEATURE_SHOW_THREADS || ENABLE_FEATURE_PS_WIDE || ENABLE_FEATURE_PS_LONG
|
||||||
|
int opts = 0;
|
||||||
# if ENABLE_FEATURE_PS_WIDE
|
# if ENABLE_FEATURE_PS_WIDE
|
||||||
/* -w is a bit complicated */
|
/* -w is a bit complicated */
|
||||||
int w_count = 0;
|
int w_count = 0;
|
||||||
@ -711,10 +711,10 @@ int ps_main(int argc UNUSED_PARAM, char **argv UNUSED_PARAM)
|
|||||||
* We also show STIME (standard says that -f shows it, -l doesn't).
|
* We also show STIME (standard says that -f shows it, -l doesn't).
|
||||||
*/
|
*/
|
||||||
puts("S UID PID PPID VSZ RSS TTY STIME TIME CMD");
|
puts("S UID PID PPID VSZ RSS TTY STIME TIME CMD");
|
||||||
#if ENABLE_FEATURE_PS_LONG
|
# if ENABLE_FEATURE_PS_LONG
|
||||||
now = time(NULL);
|
now = time(NULL);
|
||||||
uptime = get_uptime();
|
uptime = get_uptime();
|
||||||
#endif
|
# endif
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
puts(" PID USER VSZ STAT COMMAND");
|
puts(" PID USER VSZ STAT COMMAND");
|
||||||
|
Loading…
Reference in New Issue
Block a user