aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVadim Yanitskiy <vyanitskiy@sysmocom.de>2022-07-13 00:52:43 +0700
committerVadim Yanitskiy <vyanitskiy@sysmocom.de>2022-07-13 00:52:47 +0700
commit991ae5b36884128035ee5b3d111a896d187524f4 (patch)
tree8130837cdfeffeebb84b3f5fc723b6795a017570
parent0f067d880904d570d3846a41665008e3cc047727 (diff)
tests/amr: fix less-than-zero comparison of an unsigned value
Change-Id: I3857095f6ec27330e95da7fe58bef8c053284a5f Fixes: CID#274725
-rw-r--r--tests/amr/amr_test.c2
1 files changed, 1 insertions, 1 deletions
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 @@ void osmo_amr_iuup_to_bwe_and_inverse_test(void)
{
uint8_t buf[256];
uint8_t buf_chk[256];
- unsigned int ft;
+ int ft;
unsigned int i = 0;
int len;