From 01bc44aaf6a10321308ab756f6204f87d03efc8e Mon Sep 17 00:00:00 2001 From: Nikolas Garofil Date: Sun, 31 May 2009 16:29:12 +0200 Subject: [PATCH] Don't check if output to X is requested when compiled without X --- src/conky.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/conky.c b/src/conky.c index 94e48a0b..008803c1 100644 --- a/src/conky.c +++ b/src/conky.c @@ -5963,13 +5963,13 @@ static void draw_line(char *s) int cur_y_add = 0; int font_h; char *tmp_str; -#endif /* X11 */ if ((output_methods & TO_X) == 0) { +#endif /* X11 */ draw_string(s); return; - } #ifdef X11 + } cur_x = text_start_x; cur_y += font_ascent(); font_h = font_height();