Kouhei Sutou 2018-11-26 10:36:49 +0900 (Mon, 26 Nov 2018) Revision: 3425f779be44346f3d5a3adf597b7de80e2ecd19 https://github.com/groonga/groonga/commit/3425f779be44346f3d5a3adf597b7de80e2ecd19 Message: Fix function call Modified files: lib/onigmo.c Modified: lib/onigmo.c (+1 -1) =================================================================== --- lib/onigmo.c 2018-11-26 10:15:29 +0900 (651a49b65) +++ lib/onigmo.c 2018-11-26 10:36:49 +0900 (952e11b3d) @@ -83,7 +83,7 @@ grn_onigmo_new(grn_ctx *ctx, &onig_error_info); if (onig_result != ONIG_NORMAL) { char message[ONIG_MAX_ERROR_MESSAGE_LEN]; - onig_error_code_to_str(message, onig_result, onig_error_info); + onig_error_code_to_str(message, onig_result, &onig_error_info); ERR(GRN_INVALID_ARGUMENT, "%s[regexp][new] " "failed to create regular expression object: <%.*s>: %s", -------------- next part -------------- An HTML attachment was scrubbed... URL: <https://lists.osdn.me/mailman/archives/groonga-commit/attachments/20181126/a1f2c140/attachment.html>