aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/output.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/output.c b/src/output.c
index 5c68f17..93ef6f5 100644
--- a/src/output.c
+++ b/src/output.c
@@ -177,10 +177,10 @@ inline void out_print_time(time_t tv) {
tm = localtime(&tv);
if (option_timestamp_long) {
strftime(timestamp, sizeof(timestamp), "%Y%m%d %H:%M:%S %Z", tm);
- printf(" %22s ", timestamp);
+ printf(" %-22s ", timestamp);
} else {
strftime(timestamp, sizeof(timestamp), "%H:%M:%S", tm);
- printf(" %8s ", timestamp);
+ printf(" %-8s ", timestamp);
}
}