extmod/re1.5: Workaround issue with mingw32-gcc 4.2.1.

This commit is contained in:
Paul Sokolovsky 2015-11-01 02:39:01 +03:00
parent aeadf7607d
commit d0601b0a1f
1 changed files with 1 additions and 1 deletions

View File

@ -65,7 +65,7 @@ static const char *_compilecode(const char *re, ByteProg *prog, int sizecode)
}
case '(': {
term = PC;
int sub;
int sub = 0;
int capture = re[1] != '?' || re[2] != ':';
if (capture) {