(svn r21909) -Fix: some missing spaces

This commit is contained in:
rubidium
2011-01-26 08:14:36 +00:00
parent d16b489673
commit 54c0dec6aa
7 changed files with 7 additions and 7 deletions

View File

@@ -73,7 +73,7 @@ static uint16 ParseCode(const char *start, const char *end)
}
}
if (end - start == 1) {
if (*start >= 'a' && *start <= 'z') return *start - ('a' - 'A');
if (*start >= 'a' && *start <= 'z') return *start - ('a'-'A');
return *start;
}
return 0;