You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mynewt.apache.org by ma...@apache.org on 2016/05/17 18:57:59 UTC

[3/8] incubator-mynewt-core git commit: Fixing json test

Fixing json test


Project: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/commit/57e945dc
Tree: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/tree/57e945dc
Diff: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/diff/57e945dc

Branch: refs/heads/develop
Commit: 57e945dc1b08d5d0f1f886e9e328abc0b25511d4
Parents: 2082080
Author: Vipul Rahane <vi...@runtime.io>
Authored: Tue Apr 26 11:36:02 2016 -0700
Committer: Vipul Rahane <vi...@runtime.io>
Committed: Mon May 16 14:05:34 2016 -0700

----------------------------------------------------------------------
 libs/json/src/test/test_json_simple.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/blob/57e945dc/libs/json/src/test/test_json_simple.c
----------------------------------------------------------------------
diff --git a/libs/json/src/test/test_json_simple.c b/libs/json/src/test/test_json_simple.c
index d1875a7..39d14b8 100644
--- a/libs/json/src/test/test_json_simple.c
+++ b/libs/json/src/test/test_json_simple.c
@@ -147,8 +147,8 @@ test_buf_init(struct test_jbuf *ptjb, char *string) {
 /* now test the decode on a string */
 TEST_CASE(test_json_simple_decode){
     struct test_jbuf tjb; 
-    unsigned int uint_val;
-    int int_val;
+    long long unsigned int uint_val;
+    long long int int_val;
     bool bool_val;
     char string1[16];
     char string2[16];