]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
fix unused parameter warning on windows
authorJeff Lenk <jeff@jefflenk.com>
Mon, 27 May 2013 14:18:56 +0000 (09:18 -0500)
committerTravis Cross <tc@traviscross.com>
Wed, 29 May 2013 02:48:17 +0000 (02:48 +0000)
libs/stfu/stfu.c

index b43772c4aefafec5b75017062df88681463cf551..b4a8455437457c312fa7e9b57c099e659a806907 100644 (file)
@@ -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;