about summary refs log tree commit diff stats
path: root/src/windows.c
diff options
context:
space:
mode:
authorDmitry Podgorny <pasis.ua@gmail.com>2013-01-13 00:55:13 +0200
committerDmitry Podgorny <pasis.ua@gmail.com>2013-01-13 00:55:13 +0200
commit8bfeb5fc9149d382ac11911ac7bbe24ee01ead93 (patch)
tree0fe0f4fb05a81e4c7de3976bf314d4eecb1a81c8 /src/windows.c
parentd7b969b1354ed69b4080b5258130ac61d0714d67 (diff)
downloadprofani-tty-8bfeb5fc9149d382ac11911ac7bbe24ee01ead93.tar.gz
windows.c: fixed gcc warning
Diffstat (limited to 'src/windows.c')
-rw-r--r--src/windows.c2
1 files changed, 1 insertions, 1 deletions
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);
         }