diff options
author | Kalle Wallin <kaw@linux.se> | 2005-02-13 19:51:38 +0000 |
---|---|---|
committer | Kalle Wallin <kaw@linux.se> | 2005-02-13 19:51:38 +0000 |
commit | b1a02a4b2223ae2e522c229983f5f54e4723ddc9 (patch) | |
tree | 4133972c2da7b2b256ac0bf3f509f25f4f6f6ddc /src/main.c | |
parent | 9c42d1c4fd397be843032b7efbdc87e6fd96e616 (diff) | |
download | mpd-b1a02a4b2223ae2e522c229983f5f54e4723ddc9.tar.gz mpd-b1a02a4b2223ae2e522c229983f5f54e4723ddc9.tar.xz mpd-b1a02a4b2223ae2e522c229983f5f54e4723ddc9.zip |
Fixes bug #0000360
git-svn-id: https://svn.musicpd.org/ncmpc/trunk@2948 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to '')
-rw-r--r-- | src/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c index ece1ad593..8a48dc5fa 100644 --- a/src/main.c +++ b/src/main.c @@ -104,7 +104,7 @@ update_xterm_title(void) if( strncmp(title,tmp,BUFSIZE) ) { g_strlcpy(title, tmp, BUFSIZE); - set_xterm_title(title); + set_xterm_title("%s", title); } } |