pespin has uploaded this change for review. (
https://gerrit.osmocom.org/c/libosmocore/+/28104 )
Change subject: coding: Use ARRAY_SIZE macro
......................................................................
coding: Use ARRAY_SIZE macro
Change-Id: I6b7a2a3a7be6a1d92038ff3b249e539fcd0f639e
---
M src/coding/gsm0503_coding.c
1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://gerrit.osmocom.org:29418/libosmocore refs/changes/04/28104/1
diff --git a/src/coding/gsm0503_coding.c b/src/coding/gsm0503_coding.c
index 493f957..e2bbb9b 100644
--- a/src/coding/gsm0503_coding.c
+++ b/src/coding/gsm0503_coding.c
@@ -547,7 +547,7 @@
return res;
coded_len = osmo_conv_encode(code, output, recoded);
- OSMO_ASSERT(sizeof(recoded) / sizeof(recoded[0]) >= coded_len);
+ OSMO_ASSERT(ARRAY_SIZE(recoded)) >= coded_len);
/* Count bit errors */
if (n_errors) {
--
To view, visit
https://gerrit.osmocom.org/c/libosmocore/+/28104
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings
Gerrit-Project: libosmocore
Gerrit-Branch: master
Gerrit-Change-Id: I6b7a2a3a7be6a1d92038ff3b249e539fcd0f639e
Gerrit-Change-Number: 28104
Gerrit-PatchSet: 1
Gerrit-Owner: pespin <pespin(a)sysmocom.de>
Gerrit-MessageType: newchange