cedric pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=2dd6e7f302c600936d0a5f870298b7b1f16656ae
commit 2dd6e7f302c600936d0a5f870298b7b1f16656ae Author: Cedric BAIL <[email protected]> Date: Thu Jun 5 22:18:59 2014 +0200 eina: fix typo in matrixsparce. CID 98417. --- src/lib/eina/eina_matrixsparse.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/eina/eina_matrixsparse.c b/src/lib/eina/eina_matrixsparse.c index e82212b..47a10ae 100644 --- a/src/lib/eina/eina_matrixsparse.c +++ b/src/lib/eina/eina_matrixsparse.c @@ -481,7 +481,7 @@ _eina_matrixsparse_row_cell_idx_get(const Eina_Matrixsparse_Row *r, assert(dir != 0); if (dir > 0) { - for (; r; c = c->next) + for (; c; c = c->next) if (c->col == col) { ((Eina_Matrixsparse_Row *)r)->last_used = c; @@ -493,7 +493,7 @@ _eina_matrixsparse_row_cell_idx_get(const Eina_Matrixsparse_Row *r, } else if (dir < 0) { - for (; r; c = c->prev) + for (; c; c = c->prev) if (c->col == col) { ((Eina_Matrixsparse_Row *)r)->last_used = c; --
