From: Travis Cross Date: Sun, 26 May 2013 09:25:29 +0000 (+0000) Subject: Remove self-assignment without any effect X-Git-Tag: v1.2.13~308 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d5d9e45632acdf6d8592764d44c77da59754581f;p=thirdparty%2Ffreeswitch.git Remove self-assignment without any effect clang: error: explicitly assigning a variable of type 'uint16_t' (aka 'unsigned short') to itself [-Werror,-Wself-assign] --- diff --git a/libs/stfu/stfu.c b/libs/stfu/stfu.c index 9a2ecbcb72..b43772c4ae 100644 --- a/libs/stfu/stfu.c +++ b/libs/stfu/stfu.c @@ -821,7 +821,6 @@ STFU_DECLARE(int32_t) stfu_n_copy_next_frame(stfu_instance_t *jb, uint32_t times uint32_t target_ts = 0; - seq = seq; if (!next_frame) return 0; target_ts = timestamp + (distance - 1) * jb->samples_per_packet;