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