signedness: Fix obvious sign problems

* These should be easily verified as correct.
* Tested on gcc-5.2.0 and clang-3.6.2
This commit is contained in:
Kyle Manna 2015-08-17 18:48:17 -07:00
parent 9fe7167920
commit 7d2e122f2f
2 changed files with 4 additions and 4 deletions

View file

@ -189,7 +189,7 @@ TEST(Schema, ReadSimple) {
struct CodeGeneratorRequest req;
read_CodeGeneratorRequest(&req, root);
for (size_t i = 0; i < req.nodes.p.len; i++) {
for (int i = 0; i < req.nodes.p.len; i++) {
}
}