changeset 880:eb5fe37b785d trunk

[svn] - suppress a warning.
author yaz
date Mon, 19 Mar 2007 16:49:57 -0700
parents c7daa70ffe7e
children 6bb0e52df3d6
files ChangeLog src/scrobbler/plugin.c
diffstat 2 files changed, 9 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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 <james@develia.org>
+  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 <chainsaw@gentoo.org>
   revision [1856]
   Goodbye ffmpeg, welcome back WMA.
--- 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://");
 }