From 26c3f594401c3f51b4d7c19467529ba85ffebe0a Mon Sep 17 00:00:00 2001 From: bgk Date: Sat, 26 Sep 2009 13:27:12 +0000 Subject: [PATCH] Applied patch 2732666 to fix build with GCC 4.4 git-svn-id: https://svn.code.sf.net/p/vbam/code/trunk@911 a31d4220-a93d-0410-bf67-fe4944624d44 --- src/sdl/debugger.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sdl/debugger.cpp b/src/sdl/debugger.cpp index e1abfd77..f5799f1c 100644 --- a/src/sdl/debugger.cpp +++ b/src/sdl/debugger.cpp @@ -945,7 +945,7 @@ static void debuggerBreak(int n, char **args) char c = *s; if(strchr(s, ':')) { const char *name = s; - char *l = strchr(s, ':'); + char *l = (char *)strchr(s, ':'); *l++ = 0; int line = atoi(l);