COMP:Fix warning on VS 64bit. Don't why gcc 4.3.2 didn't catch this one on a 64bit machine with -Wconversion on.

This commit is contained in:
Francois Bertel 2009-03-18 07:32:12 -04:00
parent 4066abc7f3
commit 489df7836e
1 changed files with 1 additions and 1 deletions

View File

@ -348,7 +348,7 @@ static int strcspn ();
bool RegularExpression::compile (const char* exp) {
register const char* scan;
register const char* longest;
register unsigned long len;
register size_t len;
int flags;
if (exp == 0) {