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:
parent
6f510f4f01
commit
26c3f59440
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in New Issue