From: Jeff Lenk Date: Mon, 27 May 2013 14:18:56 +0000 (-0500) Subject: fix unused parameter warning on windows X-Git-Tag: v1.2.13~305 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1926a54bd0dece341b7db4f87012f18d17cfc75f;p=thirdparty%2Ffreeswitch.git fix unused parameter warning on windows --- diff --git a/libs/stfu/stfu.c b/libs/stfu/stfu.c index b43772c4ae..b4a8455437 100644 --- a/libs/stfu/stfu.c +++ b/libs/stfu/stfu.c @@ -821,6 +821,9 @@ STFU_DECLARE(int32_t) stfu_n_copy_next_frame(stfu_instance_t *jb, uint32_t times uint32_t target_ts = 0; +#ifdef WIN32 + seq = seq; +#endif if (!next_frame) return 0; target_ts = timestamp + (distance - 1) * jb->samples_per_packet;