pespin has uploaded this change for review.

View Change

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 change 28104. To unsubscribe, or for help writing mail filters, visit settings.

Gerrit-Project: libosmocore
Gerrit-Branch: master
Gerrit-Change-Id: I6b7a2a3a7be6a1d92038ff3b249e539fcd0f639e
Gerrit-Change-Number: 28104
Gerrit-PatchSet: 1
Gerrit-Owner: pespin <pespin@sysmocom.de>
Gerrit-MessageType: newchange