Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
jfzheng committed Jan 11, 2016
1 parent 0ab0433 commit bf21c2c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libzbase/zarray.c
Original file line number Diff line number Diff line change
Expand Up @@ -517,7 +517,7 @@ zaddr_t zarray_find_first_match(zarray_t *za, zaddr_t elem_base, za_cmp_func_t f

zcount_t zarray_pop_first_match(zarray_t *za, zaddr_t cmp_base, za_cmp_func_t func, zaddr_t dst_base)
{
zaddr_t qidx = zarray_find_first_match_qidx(za, cmp_base, func);
zqidx_t qidx = zarray_find_first_match_qidx(za, cmp_base, func);

if (qidx >= 0) {
return zarray_pop_elem(za, qidx, dst_base);
Expand Down

0 comments on commit bf21c2c

Please sign in to comment.