From f8ee3c11852b8babb4f61e8e46cc6d3347dd4303 Mon Sep 17 00:00:00 2001 From: Richard Fuchs Date: Wed, 5 Aug 2026 08:58:22 -0400 Subject: [PATCH] MT#55283 fix compiler warning Change-Id: Id68897ff8765b088c897833c8ea7bc465f8d385d --- t/test-dtmf-detect.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/t/test-dtmf-detect.c b/t/test-dtmf-detect.c index 5e38dc039..26441f5ee 100644 --- a/t/test-dtmf-detect.c +++ b/t/test-dtmf-detect.c @@ -624,7 +624,6 @@ int main(int argc, char **argv) { unsigned char *end = samples + sizeof(samples); int packetise = 160; - int iter = 0; while (1) { unsigned char *packet_end = reader + packetise * 2; if (packet_end > end) @@ -637,7 +636,6 @@ int main(int argc, char **argv) { printf("status %i %c\n", digit, digit); reader += packetise * 2; - iter++; } printf("result: %s\n", output->str);