diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-07-09 22:04:37 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-07-09 22:04:37 +0000 |
commit | 4131d855a196dd659a18f96f50d30219e4599963 (patch) | |
tree | 2923a7c726d8575235f3f176b8e94cd0f8aa94e1 /miscutils/last_fancy.c | |
parent | fc5e80651fa98d781173fc2955c04c2321ec8cfd (diff) | |
download | busybox-w32-4131d855a196dd659a18f96f50d30219e4599963.tar.gz busybox-w32-4131d855a196dd659a18f96f50d30219e4599963.tar.bz2 busybox-w32-4131d855a196dd659a18f96f50d30219e4599963.zip |
whitespace fix
Diffstat (limited to 'miscutils/last_fancy.c')
-rw-r--r-- | miscutils/last_fancy.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/miscutils/last_fancy.c b/miscutils/last_fancy.c index b4ae5740c..f3ea0375d 100644 --- a/miscutils/last_fancy.c +++ b/miscutils/last_fancy.c | |||
@@ -52,7 +52,7 @@ static void show_entry(struct utmp *ut, int state, time_t dur_secs) | |||
52 | 52 | ||
53 | /* manpages say ut_tv.tv_sec *is* time_t, | 53 | /* manpages say ut_tv.tv_sec *is* time_t, |
54 | * but some systems have it wrong */ | 54 | * but some systems have it wrong */ |
55 | tmp = ut->ut_tv.tv_sec; | 55 | tmp = ut->ut_tv.tv_sec; |
56 | safe_strncpy(login_time, ctime(&tmp), 17); | 56 | safe_strncpy(login_time, ctime(&tmp), 17); |
57 | snprintf(logout_time, 8, "- %s", ctime(&dur_secs) + 11); | 57 | snprintf(logout_time, 8, "- %s", ctime(&dur_secs) + 11); |
58 | 58 | ||