1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-11-18 02:55:12 +00:00

fix "conky's $mpd_* don't update", sf.net #2970555

This commit is contained in:
Pavel Labath 2010-03-18 21:26:10 +01:00
parent 4b38666777
commit 8c30957671

View File

@ -304,7 +304,7 @@ bool mpd_process(thread_handle &handle)
static void update_mpd_thread(thread_handle &handle) static void update_mpd_thread(thread_handle &handle)
{ {
while (1) if (mpd_process(handle)) return; while (mpd_process(handle)) ;
/* never reached */ /* never reached */
} }