From b30dde34ec3206296bd1cad3d6cc47b509170f3f Mon Sep 17 00:00:00 2001 From: Travis Cross Date: Sun, 26 May 2013 09:25:29 +0000 Subject: [PATCH] Remove self-assignment without any effect clang: error: explicitly assigning a variable of type 'uint16_t' (aka 'unsigned short') to itself [-Werror,-Wself-assign] --- libs/stfu/stfu.c | 1 - 1 file changed, 1 deletion(-) 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;