diff options
author | ache <ache@FreeBSD.org> | 1996-12-05 17:56:05 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 1996-12-05 17:56:05 +0000 |
commit | f204d1bbeec6997dad47a92864af6c7b521a0b17 (patch) | |
tree | 0ae43947eace937d1461780fc360fcb71d698d61 | |
parent | adcb17c3edfe401ae8509a8067592d554fc0d9a9 (diff) | |
download | FreeBSD-src-f204d1bbeec6997dad47a92864af6c7b521a0b17.zip FreeBSD-src-f204d1bbeec6997dad47a92864af6c7b521a0b17.tar.gz |
Remove one space to produce the same output alignment
like in who, rwho, w, etc.
-rw-r--r-- | usr.bin/last/last.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/last/last.c b/usr.bin/last/last.c index 25a7627..4a378f6 100644 --- a/usr.bin/last/last.c +++ b/usr.bin/last/last.c @@ -203,7 +203,7 @@ wtmp() if (want(bp)) { tm = localtime(&bp->ut_time); (void) strftime(ct, sizeof(ct), "%c", tm); - printf("%-*.*s %-*.*s %-*.*s %10.10s %5.5s \n", + printf("%-*.*s %-*.*s %-*.*s %10.10s %5.5s \n", UT_NAMESIZE, UT_NAMESIZE, bp->ut_name, UT_LINESIZE, UT_LINESIZE, bp->ut_line, @@ -223,7 +223,7 @@ wtmp() if (want(bp)) { tm = localtime(&bp->ut_time); (void) strftime(ct, sizeof(ct), "%c", tm); - printf("%-*.*s %-*.*s %-*.*s %10.10s %5.5s \n", + printf("%-*.*s %-*.*s %-*.*s %10.10s %5.5s \n", UT_NAMESIZE, UT_NAMESIZE, bp->ut_name, UT_LINESIZE, UT_LINESIZE, bp->ut_line, UT_HOSTSIZE, UT_HOSTSIZE, bp->ut_host, @@ -261,7 +261,7 @@ wtmp() bp->ut_line[4] = '\0'; tm = localtime(&bp->ut_time); (void) strftime(ct, sizeof(ct), "%c", tm); - printf("%-*.*s %-*.*s %-*.*s %10.10s %5.5s ", + printf("%-*.*s %-*.*s %-*.*s %10.10s %5.5s ", UT_NAMESIZE, UT_NAMESIZE, bp->ut_name, UT_LINESIZE, UT_LINESIZE, bp->ut_line, UT_HOSTSIZE, UT_HOSTSIZE, bp->ut_host, |