From 5cb0a7abc99a90c9583103ca67f9b49020769a19 Mon Sep 17 00:00:00 2001 From: Yaowu Xu Date: Mon, 17 Oct 2016 08:12:18 -0700 Subject: [PATCH] Replace {} with continue Change-Id: I2e939e898cc30c2999b47f2789191e08272b1cc0 --- examples/simple_encoder.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/examples/simple_encoder.c b/examples/simple_encoder.c index 73a4fde97..418757def 100644 --- a/examples/simple_encoder.c +++ b/examples/simple_encoder.c @@ -232,8 +232,7 @@ int main(int argc, char **argv) { } // Flush encoder. - while (encode_frame(&codec, NULL, -1, 0, writer)) { - } + while (encode_frame(&codec, NULL, -1, 0, writer)) continue; printf("\n"); fclose(infile); -- 2.50.0