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;