Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--procps/ps.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/procps/ps.c b/procps/ps.c
index 5f7372263..89cadad00 100644
--- a/procps/ps.c
+++ b/procps/ps.c
@@ -141,10 +141,7 @@ struct globals {
unsigned terminal_width;
#if ENABLE_FEATURE_PS_TIME
unsigned kernel_HZ;
- /* used to be long long, but 64 bits is enough
- * (long long may become 128 bits in the future):
- */
- uint64_t seconds_since_boot;
+ unsigned long seconds_since_boot;
#endif
} FIX_ALIASING;
#define G (*(struct globals*)&bb_common_bufsiz1)