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
This commit is contained in:
bgk 2009-09-26 13:27:12 +00:00
parent 6f510f4f01
commit 26c3f59440
1 changed files with 1 additions and 1 deletions

View File

@ -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);