diff options
author | James Booth <boothj5@gmail.com> | 2013-01-12 23:39:21 +0000 |
---|---|---|
committer | James Booth <boothj5@gmail.com> | 2013-01-12 23:39:21 +0000 |
commit | 7733af1293a81162ee28a42f0a4ec281901b7feb (patch) | |
tree | e61c88dfdfad39eecd9b8cf56b9e48f1deb0106c /src | |
parent | f519ae78d80eb3f62d93dc3a1c2c744faed1d114 (diff) | |
parent | 8bfeb5fc9149d382ac11911ac7bbe24ee01ead93 (diff) | |
download | profani-tty-7733af1293a81162ee28a42f0a4ec281901b7feb.tar.gz |
Merge remote-tracking branch 'dmitry/fixes'
Diffstat (limited to 'src')
-rw-r--r-- | src/windows.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/windows.c b/src/windows.c index cd16aeb7..ccba1631 100644 --- a/src/windows.c +++ b/src/windows.c @@ -191,7 +191,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); } |