From 8bfeb5fc9149d382ac11911ac7bbe24ee01ead93 Mon Sep 17 00:00:00 2001 From: Dmitry Podgorny Date: Sun, 13 Jan 2013 00:55:13 +0200 Subject: [PATCH] windows.c: fixed gcc warning --- src/windows.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/windows.c b/src/windows.c index 7015017d..b57504c9 100644 --- a/src/windows.c +++ b/src/windows.c @@ -190,7 +190,7 @@ _ui_draw_win_title(void) if (g_strcmp0(win_title, new_win_title) != 0) { // print to x-window title bar - printf(new_win_title); + printf("%s", new_win_title); if (win_title != NULL) { free(win_title); }