style cleanup

This commit is contained in:
2012-08-22 16:44:32 +00:00
parent 6143acf878
commit 1939baa47d
14 changed files with 55 additions and 45 deletions

View File

@@ -728,8 +728,9 @@ static int imb_exr_split_token(const char *str, const char *end, const char **to
{
int maxlen = end - str;
int len = 0;
while (len < maxlen && *(end - len - 1) != '.')
++len;
while (len < maxlen && *(end - len - 1) != '.') {
len++;
}
*token = end - len;
return len;