osmith has submitted this change. (
https://gerrit.osmocom.org/c/osmo-iuh/+/30087 )
Change subject: hnbap_common: hnbap_cause_str: handle nothing val
......................................................................
hnbap_common: hnbap_cause_str: handle nothing val
Fix for:
../../../src/osmo-iuh/src/hnbap_common.c:85:9: error: enumeration value
‘HNBAP_Cause_PR_NOTHING’ not handled in switch [-Werror=switch]
Change-Id: Icab3052e27d1951129e3809e61357ee23c4cb588
---
M src/hnbap_common.c
1 file changed, 3 insertions(+), 0 deletions(-)
Approvals:
Jenkins Builder: Verified
fixeria: Looks good to me, but someone else must approve
pespin: Looks good to me, but someone else must approve
laforge: Looks good to me, approved
diff --git a/src/hnbap_common.c b/src/hnbap_common.c
index be7d570..67cc30c 100644
--- a/src/hnbap_common.c
+++ b/src/hnbap_common.c
@@ -103,6 +103,9 @@
get_value_string(hnbap_cause_misc_vals,
cause->choice.misc));
break;
+ case HNBAP_Cause_PR_NOTHING:
+ snprintf(buf, sizeof(buf), "NOTHING");
+ break;
}
return buf;
}
2 is the latest approved patch-set.
No files were changed between the latest approved patch-set and the submitted one.
--
To view, visit
https://gerrit.osmocom.org/c/osmo-iuh/+/30087
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-iuh
Gerrit-Branch: master
Gerrit-Change-Id: Icab3052e27d1951129e3809e61357ee23c4cb588
Gerrit-Change-Number: 30087
Gerrit-PatchSet: 4
Gerrit-Owner: osmith <osmith(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-Reviewer: laforge <laforge(a)osmocom.org>
Gerrit-Reviewer: osmith <osmith(a)sysmocom.de>
Gerrit-Reviewer: pespin <pespin(a)sysmocom.de>
Gerrit-MessageType: merged