diff options
author | 2014-03-31 10:06:05 +0000 | |
---|---|---|
committer | 2014-03-31 10:06:05 +0000 | |
commit | 2cc9ca4c5e2c5c65764ff43beb1f21f93ca3aac8 (patch) | |
tree | 2d13f899e1da5fb939bbeccff1d411abccaa689c /src/lib/util/unicode.c | |
parent | c8b93e57d2392b50eafdf120198997b870e0deb4 (diff) |
VS2013 x64 is little bit more anal about signed/unsigned comparison (nw)
Diffstat (limited to 'src/lib/util/unicode.c')
-rw-r--r-- | src/lib/util/unicode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/util/unicode.c b/src/lib/util/unicode.c index c87965415d7..8ffae847141 100644 --- a/src/lib/util/unicode.c +++ b/src/lib/util/unicode.c @@ -30,7 +30,7 @@ int uchar_isvalid(unicode_char uchar) int uchar_from_utf8(unicode_char *uchar, const char *utf8char, size_t count) { unicode_char c, minchar; - int auxlen, i; + size_t auxlen, i; char auxchar; /* validate parameters */ |