From 61791a91be204f985b9ba2537f8d2cf57816b0d2 Mon Sep 17 00:00:00 2001 From: Martin Storsjo Date: Sat, 27 Jun 2015 00:20:33 +0300 Subject: [PATCH] Remove double semicolons (empty statements) Some compilers can't handle this, and these occurrances are typos. Bug: 22860270 Change-Id: I82349f103cef1f196d1a85dae307aff83c7d6090 --- encoder/ih264e_me.c | 2 +- test/decoder/main.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/encoder/ih264e_me.c b/encoder/ih264e_me.c index 68bdea6..12a6f55 100644 --- a/encoder/ih264e_me.c +++ b/encoder/ih264e_me.c @@ -1281,7 +1281,7 @@ WORD32 ih264e_find_bskip_params_me(process_ctxt_t *ps_proc, WORD32 i4_reflist) enc_pu_t *ps_a_pu, *ps_c_pu, *ps_b_pu; /* Variables to check if a particular mB is available */ - WORD32 i4_a, i4_b, i4_c, i4_c_avail;; + WORD32 i4_a, i4_b, i4_c, i4_c_avail; /* Mode availability, init to no modes available */ WORD32 i4_mode_avail; diff --git a/test/decoder/main.c b/test/decoder/main.c index 8c9e885..35454a4 100644 --- a/test/decoder/main.c +++ b/test/decoder/main.c @@ -1824,7 +1824,7 @@ int main(WORD32 argc, CHAR *argv[]) UWORD32 frm_cnt = 0; WORD32 total_bytes_comsumed; UWORD32 max_op_frm_ts; - UWORD32 u4_num_disp_bufs_with_dec;; + UWORD32 u4_num_disp_bufs_with_dec; #ifdef PROFILE_ENABLE UWORD32 u4_tot_cycles = 0;