Commit f49fabea authored by Oleg Efimov's avatar Oleg Efimov

t: fix compile warnings about pointers of different types assignments

warning: assigning to 'uint8_t *' (aka 'unsigned char *')
from 'char *' converts between pointers to integer types
with different sign [-Wpointer-sign]
parent b0b0e874
...@@ -2002,7 +2002,7 @@ test_message_check(void) ...@@ -2002,7 +2002,7 @@ test_message_check(void)
/* test with required_string not set */ /* test with required_string not set */
m.required_string = NULL; m.required_string = NULL;
m.required_msg = &sm; m.required_msg = &sm;
m.required_bytes.data = str; m.required_bytes.len = 1; m.required_bytes.data = (uint8_t *)str; m.required_bytes.len = 1;
assert(0 == protobuf_c_message_check(&m.base)); assert(0 == protobuf_c_message_check(&m.base));
/* test with required_msg not set */ /* test with required_msg not set */
...@@ -2016,7 +2016,7 @@ test_message_check(void) ...@@ -2016,7 +2016,7 @@ test_message_check(void)
assert(0 == protobuf_c_message_check(&m.base)); assert(0 == protobuf_c_message_check(&m.base));
/* test with all required fields set */ /* test with all required fields set */
m.required_bytes.data = str; m.required_bytes.len = 1; m.required_bytes.data = (uint8_t *)str; m.required_bytes.len = 1;
assert(1 == protobuf_c_message_check(&m.base)); assert(1 == protobuf_c_message_check(&m.base));
/* test with incomplete required submessage */ /* test with incomplete required submessage */
...@@ -2041,7 +2041,7 @@ test_message_check(void) ...@@ -2041,7 +2041,7 @@ test_message_check(void)
assert(0 == protobuf_c_message_check(&m.base)); assert(0 == protobuf_c_message_check(&m.base));
/* test with correct optional bytes */ /* test with correct optional bytes */
m.optional_bytes.data = str; m.optional_bytes.len = 1; m.optional_bytes.data = (uint8_t *)str; m.optional_bytes.len = 1;
assert(1 == protobuf_c_message_check(&m.base)); assert(1 == protobuf_c_message_check(&m.base));
/* test with repeated strings set incorrectly */ /* test with repeated strings set incorrectly */
...@@ -2076,7 +2076,7 @@ test_message_check(void) ...@@ -2076,7 +2076,7 @@ test_message_check(void)
assert(0 == protobuf_c_message_check(&m.base)); assert(0 == protobuf_c_message_check(&m.base));
/* test with repeated bytes set correctly */ /* test with repeated bytes set correctly */
bd.data = str; bd.data = (uint8_t *)str;
assert(1 == protobuf_c_message_check(&m.base)); assert(1 == protobuf_c_message_check(&m.base));
/* test with empty repeated string vector */ /* test with empty repeated string vector */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment