diff options
| author | 2014-03-31 10:06:05 +0000 | |
|---|---|---|
| committer | 2014-03-31 10:06:05 +0000 | |
| commit | 2cc9ca4c5e2c5c65764ff43beb1f21f93ca3aac8 (patch) | |
| tree | 2d13f899e1da5fb939bbeccff1d411abccaa689c /src/tools | |
| parent | c8b93e57d2392b50eafdf120198997b870e0deb4 (diff) | |
VS2013 x64 is little bit more anal about signed/unsigned comparison (nw)
Diffstat (limited to 'src/tools')
| -rw-r--r-- | src/tools/src2html.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/src2html.c b/src/tools/src2html.c index dbbc3512c9e..329ae126ccd 100644 --- a/src/tools/src2html.c +++ b/src/tools/src2html.c @@ -598,7 +598,7 @@ static int output_file(file_type type, int srcrootlen, int dstrootlen, astring & { const token_entry *curtoken; char *temp = srcptr; - int toklength; + size_t toklength; // find the end of the token while (*temp != 0 && is_token[(UINT8)*temp]) |
