From 49073aca8606131bb73ca1471219d63b27d2602f Mon Sep 17 00:00:00 2001 From: Lzu Tao Date: Sun, 2 Dec 2018 20:39:47 +0700 Subject: [PATCH] clang: Fix -Wcomma --- tests/frametest.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/frametest.c b/tests/frametest.c index 6d2cdd0..b93f4fe 100644 --- a/tests/frametest.c +++ b/tests/frametest.c @@ -160,7 +160,7 @@ static unsigned FUZ_highbit(U32 v32) { unsigned nbBits = 0; if (v32==0) return 0; - while (v32) v32 >>= 1, nbBits ++; + while (v32) {v32 >>= 1; nbBits ++;} return nbBits; } -- 2.7.4