Kouhei Sutou 2018-10-29 16:15:55 +0900 (Mon, 29 Oct 2018) Revision: 8dbb64b90244e3801e39feb3edaff98a5cc2f74f https://github.com/groonga/groonga/commit/8dbb64b90244e3801e39feb3edaff98a5cc2f74f Message: Fix variable name Modified files: lib/db.c Modified: lib/db.c (+2 -2) =================================================================== --- lib/db.c 2018-10-29 16:10:35 +0900 (e8d1194fe) +++ lib/db.c 2018-10-29 16:15:55 +0900 (cf953636a) @@ -9421,14 +9421,14 @@ grn_obj_set_info_token_filters(grn_ctx *ctx, switch (table->header.type) { case GRN_TABLE_HASH_KEY : - token_filters = &(((grn_hash *)table)->token_filters); + token_filter_procs = &(((grn_hash *)table)->token_filters); break; case GRN_TABLE_PAT_KEY : token_filters = &(((grn_pat *)table)->token_filters); token_filter_procs = &(((grn_pat *)table)->token_filter_procs); break; case GRN_TABLE_DAT_KEY : - token_filters = &(((grn_dat *)table)->token_filters); + token_filter_procs = &(((grn_dat *)table)->token_filters); break; default : break; -------------- next part -------------- An HTML attachment was scrubbed... URL: <https://lists.osdn.me/mailman/archives/groonga-commit/attachments/20181029/a8fc30fe/attachment.html>