Navigation Menu

Skip to content

Commit

Permalink
Fix variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
kou committed Oct 19, 2015
1 parent 8e78fd8 commit 73bc514
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions lib/db.c
Expand Up @@ -13441,7 +13441,8 @@ grn_ctx_get_all_types(grn_ctx *ctx, grn_obj *types_buffer)
}

grn_rc
grn_ctx_get_all_tokenizers(grn_ctx *ctx, grn_obj *types_buffer)
grn_ctx_get_all_tokenizers(grn_ctx *ctx, grn_obj *tokenizers_buffer)
{
return grn_ctx_get_all_objects(ctx, types_buffer, grn_obj_is_tokenizer_proc);
return grn_ctx_get_all_objects(ctx, tokenizers_buffer,
grn_obj_is_tokenizer_proc);
}

0 comments on commit 73bc514

Please sign in to comment.