summaryrefslogtreecommitdiff
path: root/src/fe-common/core/printtext.c
diff options
context:
space:
mode:
authorMichael Vetter <g.bluehut@gmail.com>2014-09-11 19:10:33 +0200
committerMichael Vetter <g.bluehut@gmail.com>2014-09-11 19:10:33 +0200
commit51239925ec2931a065aeaee664793a0edbcd2c4a (patch)
tree92792766b7500f01a67d1d144c4028e699574e88 /src/fe-common/core/printtext.c
parent503cbeb330331e9ab6cf31af453f6232b10b12e2 (diff)
downloadirssi-51239925ec2931a065aeaee664793a0edbcd2c4a.zip
source cleanup: remove trailing whitespaces
Diffstat (limited to 'src/fe-common/core/printtext.c')
-rw-r--r--src/fe-common/core/printtext.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fe-common/core/printtext.c b/src/fe-common/core/printtext.c
index a5eaa38f..466a2825 100644
--- a/src/fe-common/core/printtext.c
+++ b/src/fe-common/core/printtext.c
@@ -170,13 +170,13 @@ static void print_line(TEXT_DEST_REC *dest, const char *text)
g_return_if_fail(dest != NULL);
g_return_if_fail(text != NULL);
-
+
theme = window_get_theme(dest->window);
tmp = format_get_level_tag(theme, dest);
str = !theme->info_eol ? format_add_linestart(text, tmp) :
format_add_lineend(text, tmp);
g_free_not_null(tmp);
-
+
/* send both the formatted + stripped (for logging etc.) */
stripped = strip_codes(str);
signal_emit_id(signal_print_text, 3, dest, str, stripped);