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:
parent
9fe7167920
commit
7d2e122f2f
2 changed files with 4 additions and 4 deletions
|
|
@ -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++) {
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue