Attention is currently required from: pespin.
laforge has posted comments on this change. ( https://gerrit.osmocom.org/c/osmo-cbc/+/28586 )
Change subject: rest_api: Fix cbs.data_user_len not set in 'payload_encoded'
......................................................................
Patch Set 1: Code-Review+2
--
To view, visit https://gerrit.osmocom.org/c/osmo-cbc/+/28586
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-cbc
Gerrit-Branch: master
Gerrit-Change-Id: I519cf300cd01e8c2728babeaa77b8486f47115be
Gerrit-Change-Number: 28586
Gerrit-PatchSet: 1
Gerrit-Owner: pespin <pespin(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: laforge <laforge(a)osmocom.org>
Gerrit-Attention: pespin <pespin(a)sysmocom.de>
Gerrit-Comment-Date: Wed, 13 Jul 2022 05:31:58 +0000
Gerrit-HasComments: No
Gerrit-Has-Labels: Yes
Gerrit-MessageType: comment
laforge has submitted this change. ( https://gerrit.osmocom.org/c/libosmo-netif/+/28587 )
Change subject: tests/amr: fix less-than-zero comparison of an unsigned value
......................................................................
tests/amr: fix less-than-zero comparison of an unsigned value
Change-Id: I3857095f6ec27330e95da7fe58bef8c053284a5f
Fixes: CID#274725
---
M tests/amr/amr_test.c
1 file changed, 1 insertion(+), 1 deletion(-)
Approvals:
Jenkins Builder: Verified
pespin: Looks good to me, but someone else must approve
laforge: Looks good to me, approved
diff --git a/tests/amr/amr_test.c b/tests/amr/amr_test.c
index 69ba723..d332eaa 100644
--- a/tests/amr/amr_test.c
+++ b/tests/amr/amr_test.c
@@ -209,7 +209,7 @@
{
uint8_t buf[256];
uint8_t buf_chk[256];
- unsigned int ft;
+ int ft;
unsigned int i = 0;
int len;
--
To view, visit https://gerrit.osmocom.org/c/libosmo-netif/+/28587
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: libosmo-netif
Gerrit-Branch: master
Gerrit-Change-Id: I3857095f6ec27330e95da7fe58bef8c053284a5f
Gerrit-Change-Number: 28587
Gerrit-PatchSet: 1
Gerrit-Owner: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: laforge <laforge(a)osmocom.org>
Gerrit-Reviewer: pespin <pespin(a)sysmocom.de>
Gerrit-MessageType: merged