summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/strauss.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/strauss.c b/src/strauss.c
index 1b6d8d419..ce30823d9 100644
--- a/src/strauss.c
+++ b/src/strauss.c
@@ -369,9 +369,9 @@ print_totd(void)
for (i = 0; (i < MAX_TIP_LINES) && (tips_tricks_tweaks[id][i] ||
(i < (ARRAY_SIZE(tip_right) - 1)));
i++) {
- fprintf(stderr, "%s%-*.*s%s%s\n",
+ fprintf(stderr, "%s%-*s%s%s\n",
tip_left[MIN(i + 1, ARRAY_SIZE(tip_left) - 1)],
- w, w, tips_tricks_tweaks[id][i] ?: "",
+ w, tips_tricks_tweaks[id][i] ?: "",
tip_right[MIN(i + 1, ARRAY_SIZE(tip_right) - 1)],
strauss[MIN(3 + i, strauss_lines - 1)]);
}