diff src/scrobbler/plugin.c @ 880:eb5fe37b785d trunk

[svn] - suppress a warning.
author yaz
date Mon, 19 Mar 2007 16:49:57 -0700
parents 13bb2cf2f9e6
children 238055a6cb8f
line wrap: on
line diff
--- 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://");
 }