FS-4929 -revert fix differently

This commit is contained in:
Jeff Lenk 2012-12-12 10:37:49 -06:00
parent 4c1776dedf
commit fef77d9123
1 changed files with 3 additions and 3 deletions

View File

@ -56,12 +56,12 @@ static inline void switch_toupper_max(char *s)
{
uint32_t *b,*p;
char *c;
size_t l, div = 0;
int rem = 0;
size_t l;
int div = 0, rem = 0;
int i;
l = strlen(s);
div = l / 4;
div = (int) (l / 4);
rem = l % 4;
p = (uint32_t *) s;