aboutsummaryrefslogtreecommitdiff
path: root/coreutils
diff options
context:
space:
mode:
authorvda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-11-01 10:25:35 +0000
committervda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-11-01 10:25:35 +0000
commitf0b3fc041f40e2185a14c3b5ff778444c2b98c81 (patch)
tree99c5ad443f69860833c8ef37e142fddfedb90872 /coreutils
parentab99e773ad9c0ea664fd869a1af5ce28d624f295 (diff)
downloadbusybox-w32-f0b3fc041f40e2185a14c3b5ff778444c2b98c81.tar.gz
busybox-w32-f0b3fc041f40e2185a14c3b5ff778444c2b98c81.tar.bz2
busybox-w32-f0b3fc041f40e2185a14c3b5ff778444c2b98c81.zip
mostly style fixes
git-svn-id: svn://busybox.net/trunk/busybox@16487 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'coreutils')
-rw-r--r--coreutils/who.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/who.c b/coreutils/who.c
index 7566bfddc..4cd42652b 100644
--- a/coreutils/who.c
+++ b/coreutils/who.c
@@ -30,7 +30,7 @@ static const char * idle_string (time_t t)
30 if (s < 60) 30 if (s < 60)
31 return "."; 31 return ".";
32 if (s < (24 * 60 * 60)) { 32 if (s < (24 * 60 * 60)) {
33 sprintf (str, "%02d:%02d", 33 sprintf(str, "%02d:%02d",
34 (int) (s / (60 * 60)), 34 (int) (s / (60 * 60)),
35 (int) ((s % (60 * 60)) / 60)); 35 (int) ((s % (60 * 60)) / 60));
36 return str; 36 return str;