# HG changeset patch # User yaz # Date 1174348197 25200 # Node ID eb5fe37b785db7b8acc15c09f0e7ac114bf82627 # Parent c7daa70ffe7efa65018e5e7a63c7981b00d22c69 [svn] - suppress a warning. diff -r c7daa70ffe7e -r eb5fe37b785d ChangeLog --- a/ChangeLog Mon Mar 19 13:18:28 2007 -0700 +++ b/ChangeLog Mon Mar 19 16:49:57 2007 -0700 @@ -1,3 +1,10 @@ +2007-03-19 20:18:28 +0000 Giacomo Lozito + revision [1858] + alsa output plugin: use snd_pcm_wait in place of raw polls to handle device readyness; this allows to use alsa plugins such as jackplug; requires testing + trunk/src/alsa/audio.c | 23 +++-------------------- + 1 file changed, 3 insertions(+), 20 deletions(-) + + 2007-03-19 20:15:52 +0000 Tony Vroon revision [1856] Goodbye ffmpeg, welcome back WMA. diff -r c7daa70ffe7e -r eb5fe37b785d src/scrobbler/plugin.c --- a/src/scrobbler/plugin.c Mon Mar 19 13:18:28 2007 -0700 +++ b/src/scrobbler/plugin.c Mon Mar 19 16:49:57 2007 -0700 @@ -204,9 +204,9 @@ hatena_sc_cleaner(); } -static char ishttp(const char *a) +static gboolean ishttp(const char *a) { - g_return_val_if_fail(a != NULL, NULL); + g_return_val_if_fail(a != NULL, FALSE); return str_has_prefix_nocase(a, "http://"); }