diff Plugins/General/scrobbler/xmms_scrobbler.c @ 1717:837983bac90f trunk

[svn] Fixed a lot of warnings that only showed up on *BSD.
author js
date Sat, 16 Sep 2006 16:26:54 -0700
parents 651327e12a3a
children
line wrap: on
line diff
--- a/Plugins/General/scrobbler/xmms_scrobbler.c	Sat Sep 16 15:21:56 2006 -0700
+++ b/Plugins/General/scrobbler/xmms_scrobbler.c	Sat Sep 16 16:26:54 2006 -0700
@@ -128,7 +128,7 @@
 
 	tmp = strdup(a);
 	for (bp = tmp; *bp; bp++)
-		*bp = toupper(*bp);
+		*bp = toupper((int) *bp);
 	if (strstr(tmp, "HTTP://"))
 		status = -1;
 	free(tmp);