fixeria has uploaded this change for review. ( 
https://gerrit.osmocom.org/c/libosmocore/+/15595


Change subject: gsm29205_test: fix error: missing braces around initializer
......................................................................

gsm29205_test: fix error: missing braces around initializer

Since structure 'osmo_gcr_parsed' does contain arrays, GCC is not
happy about the way we initialize it. Let's do it explicitly.

Change-Id: Ia814b4a4ed5bec84ff1f69232f7f7d5ca0d19794
---
M tests/gsm29205/gsm29205_test.c
1 file changed, 7 insertions(+), 1 deletion(-)



  git pull ssh://gerrit.osmocom.org:29418/libosmocore refs/changes/95/15595/1

diff --git a/tests/gsm29205/gsm29205_test.c b/tests/gsm29205/gsm29205_test.c
index 5add1b1..44c3453 100644
--- a/tests/gsm29205/gsm29205_test.c
+++ b/tests/gsm29205/gsm29205_test.c
@@ -44,7 +44,13 @@
        };
        uint8_t len;
        struct msgb *msg;
-       struct osmo_gcr_parsed p = { 0 }, g = {
+       struct osmo_gcr_parsed p = {
+               .net_len = 0,
+               .net = { 0 },
+               .node = 0x00,
+               .cr = { 0 },
+       };
+       struct osmo_gcr_parsed g = {
                .net_len = 3,
                .net = { 0x51, 0x52, 0x53 },
                .node = 0xDEAD,

--
To view, visit https://gerrit.osmocom.org/c/libosmocore/+/15595
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: libosmocore
Gerrit-Branch: master
Gerrit-Change-Id: Ia814b4a4ed5bec84ff1f69232f7f7d5ca0d19794
Gerrit-Change-Number: 15595
Gerrit-PatchSet: 1
Gerrit-Owner: fixeria <[email protected]>
Gerrit-MessageType: newchange

Reply via email to