summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIvan Shapovalov <intelfx100@gmail.com>2014-12-14 16:04:01 +0300
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2014-12-14 12:54:17 -0500
commit9b6e0ce5acff34a87314f3eb9f72532486840edf (patch)
treed42282753382ed615404442bae12f94d37a7f914
parentcf5a8997515dc5fc96f34385ad153e4b213b4705 (diff)
delta: fix output alignment of [REDIRECTED] entries
-rw-r--r--src/delta/delta.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/delta/delta.c b/src/delta/delta.c
index a3a121fb0..de963f700 100644
--- a/src/delta/delta.c
+++ b/src/delta/delta.c
@@ -123,7 +123,7 @@ static int notify_override_redirected(const char *top, const char *bottom) {
if (!(arg_flags & SHOW_REDIRECTED))
return 0;
- printf("%s%s%s %s %s %s\n",
+ printf("%s%s%s %s %s %s\n",
ansi_highlight(), "[REDIRECTED]", ansi_highlight_off(),
top, draw_special_char(DRAW_ARROW), bottom);
return 1;