Warning fixes for 64bit visual c++ on Windows
This commit is contained in:
parent
c7da8bb06e
commit
fb2b1af2e7
1 changed files with 1 additions and 1 deletions
|
|
@ -1273,7 +1273,7 @@ String *replace_captures(int num_captures, const char *input, String *subst, int
|
|||
copy_with_maybe_case_conversion(result, p, (int)strlen(p), &convertCase, convertNextOnly);
|
||||
break;
|
||||
}
|
||||
copy_with_maybe_case_conversion(result, p, q - p, &convertCase, convertNextOnly);
|
||||
copy_with_maybe_case_conversion(result, p, (int)(q - p), &convertCase, convertNextOnly);
|
||||
p = q + 1;
|
||||
|
||||
/* Handle substitution */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue