commit | bcfba4c3f307b9388a8100278743eb0cf3eff81a | [log] [tgz] |
---|---|---|
author | alokp@chromium.org <alokp@chromium.org@736b8ea6-26fd-11df-bfd4-992fa37f6226> | Mon Aug 09 22:30:49 2010 +0000 |
committer | alokp@chromium.org <alokp@chromium.org@736b8ea6-26fd-11df-bfd4-992fa37f6226> | Mon Aug 09 22:30:49 2010 +0000 |
tree | 1187c66a1d147e0f32b65c80107b871b98873e3f | |
parent | 6eed5eb2804a3b2d65790d42a97e2cba69855041 [diff] [blame] |
Fix warnings about comparison/assignement between signed and unsigned types. Submitted by timeless. BUG=13 Review URL: http://codereview.appspot.com/1895051 git-svn-id: https://angleproject.googlecode.com/svn/trunk@378 736b8ea6-26fd-11df-bfd4-992fa37f6226
diff --git a/src/compiler/preprocessor/atom.c b/src/compiler/preprocessor/atom.c index 76bd448..c5636b7 100644 --- a/src/compiler/preprocessor/atom.c +++ b/src/compiler/preprocessor/atom.c
@@ -619,7 +619,7 @@ int InitAtomTable(AtomTable *atable, int htsize) { - int ii; + unsigned int ii; htsize = htsize <= 0 ? INIT_HASH_TABLE_SIZE : htsize; if (!InitStringTable(&atable->stable))