From c5fd035ce02e2b5499abb97dad95315ac1d9c176 Mon Sep 17 00:00:00 2001 From: hkuang Date: Mon, 13 Oct 2014 14:04:16 -0700 Subject: [PATCH] Use pre increment. Change-Id: I016b4e77d8268e189473f4c382603afe1ae1750f --- vp9/common/vp9_blockd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vp9/common/vp9_blockd.c b/vp9/common/vp9_blockd.c index e13445fd1..7094a0118 100644 --- a/vp9/common/vp9_blockd.c +++ b/vp9/common/vp9_blockd.c @@ -92,7 +92,7 @@ void vp9_foreach_transformed_block(const MACROBLOCKD* const xd, void *arg) { int plane; - for (plane = 0; plane < MAX_MB_PLANE; plane++) + for (plane = 0; plane < MAX_MB_PLANE; ++plane) vp9_foreach_transformed_block_in_plane(xd, bsize, plane, visit, arg); }