Applied patch 2732666 to fix build with GCC 4.4

This commit is contained in:
bgk 2009-09-26 13:27:12 +00:00
parent 6686e10d26
commit 4ea036dea2
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);