From: Yaowu Xu Date: Mon, 17 Oct 2016 15:12:18 +0000 (-0700) Subject: Replace {} with continue X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5cb0a7abc99a90c9583103ca67f9b49020769a19;p=libvpx Replace {} with continue Change-Id: I2e939e898cc30c2999b47f2789191e08272b1cc0 --- 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);