summaryrefslogtreecommitdiff
path: root/tests/json
diff options
context:
space:
mode:
authorJosh Haberman <jhaberman@gmail.com>2015-05-08 17:03:20 -0700
committerJosh Haberman <jhaberman@gmail.com>2015-05-08 17:03:20 -0700
commitfa10302a502de38a66ed921eeeacb4107e9572a2 (patch)
tree5ed1bca20a889458c431da37c701aae131e15c4a /tests/json
parent3bd691a4975b2267ff04611507e766a7f9f87e83 (diff)
parentbd7ea8c6f1854aa37b7792c6f23334ffc0fd94ff (diff)
Merge from open-source development.
Diffstat (limited to 'tests/json')
-rw-r--r--tests/json/test_json.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/json/test_json.cc b/tests/json/test_json.cc
index f2e26b8..cb60bad 100644
--- a/tests/json/test_json.cc
+++ b/tests/json/test_json.cc
@@ -347,7 +347,7 @@ void test_json_roundtrip() {
test_case->input :
test_case->expected;
- for (int i = 0; i < strlen(test_case->input); i++) {
+ for (size_t i = 0; i < strlen(test_case->input); i++) {
test_json_roundtrip_message(test_case->input, expected,
serialize_handlers.get(), i);
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback