From 7bdf42d0ac1f501bbb32e1ea3f502f7355865cb5 Mon Sep 17 00:00:00 2001 Message-Id: <7bdf42d0ac1f501bbb32e1ea3f502f7355865cb5.1714091823.git.mdw@distorted.org.uk> From: Mark Wooding Date: Sat, 18 Apr 2009 13:46:54 +0100 Subject: [PATCH] Build fix. Organization: Straylight/Edgeware From: Richard Kettlewell --- clients/playrtp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clients/playrtp.c b/clients/playrtp.c index bb780d8..90199c4 100644 --- a/clients/playrtp.c +++ b/clients/playrtp.c @@ -404,7 +404,7 @@ static void *listen_thread(void attribute((unused)) *arg) { } /* See if packet is silent */ const uint16_t *s = p->samples_raw; - unsigned n = p->nsamples; + n = p->nsamples; for(; n > 0; --n) if(*s++) break; -- [mdw]