fixeria has submitted this change. ( https://gerrit.osmocom.org/c/osmocom-bb/+/32746 )
Change subject: layer23: make verify_value_string_arrays_are_terminated.py happy ......................................................................
layer23: make verify_value_string_arrays_are_terminated.py happy
Change-Id: I664d9b8f77522126406db5e3a301f1f132748e0b --- M src/host/layer23/src/common/settings.c 1 file changed, 11 insertions(+), 2 deletions(-)
Approvals: pespin: Looks good to me, approved osmith: Looks good to me, but someone else must approve Jenkins Builder: Verified
diff --git a/src/host/layer23/src/common/settings.c b/src/host/layer23/src/common/settings.c index 01a99a9..bf1f71b 100644 --- a/src/host/layer23/src/common/settings.c +++ b/src/host/layer23/src/common/settings.c @@ -212,13 +212,13 @@ { AUDIO_IOH_L1PHY, "l1phy" }, { AUDIO_IOH_MNCC_SOCK, "mncc-sock" }, { AUDIO_IOH_LOOPBACK, "loopback" }, - { 0x00, NULL} + { 0, NULL } };
const struct value_string audio_io_format_names[] = { { AUDIO_IOF_RTP, "rtp" }, { AUDIO_IOF_TI, "ti" }, - { 0x00, NULL} + { 0, NULL } };