[Scummvm-cvs-logs] SF.net SVN: scummvm:[41037] scummvm/trunk/backends/midi/alsa.cpp

thebluegr at users.sourceforge.net thebluegr at users.sourceforge.net
Sat May 30 19:06:30 CEST 2009


Revision: 41037
          http://scummvm.svn.sourceforge.net/scummvm/?rev=41037&view=rev
Author:   thebluegr
Date:     2009-05-30 17:06:30 +0000 (Sat, 30 May 2009)

Log Message:
-----------
Fixed compilation error

Modified Paths:
--------------
    scummvm/trunk/backends/midi/alsa.cpp

Modified: scummvm/trunk/backends/midi/alsa.cpp
===================================================================
--- scummvm/trunk/backends/midi/alsa.cpp	2009-05-30 16:36:37 UTC (rev 41036)
+++ scummvm/trunk/backends/midi/alsa.cpp	2009-05-30 17:06:30 UTC (rev 41037)
@@ -231,7 +231,7 @@
 	char *p;
 
 	if (isdigit(*arg)) {
-		if ((p = strpbrk(arg, ADDR_DELIM)) == NULL)
+		if ((p = (char *)strpbrk(arg, ADDR_DELIM)) == NULL)
 			return -1;
 		*client = atoi(arg);
 		*port = atoi(p + 1);


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Scummvm-git-logs mailing list