summaryrefslogtreecommitdiff
path: root/cmd_uptime.c
diff options
context:
space:
mode:
Diffstat (limited to 'cmd_uptime.c')
-rw-r--r--cmd_uptime.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd_uptime.c b/cmd_uptime.c
index 285aec1..6a9c963 100644
--- a/cmd_uptime.c
+++ b/cmd_uptime.c
@@ -26,7 +26,7 @@ void *cmd_uptime(void *data)
i2 = d2;
printf("Days %d Hours %d Minutes %d\n",i1/(3600*24),i1/(3600)%24, (i1/60)%60);
- snprintf(buf, buf_size,"Days %d Hours %d Minutes %d\n",i1/(3600*24),i1/(3600)%24, (i1/60)%60);
+ snprintf(buf, buf_size,"%dd %dh %dm\n",i1/(3600*24),i1/(3600)%24, (i1/60)%60);
ret = alloc_new_str(buf);