Skip to content

Commit

Permalink
Fixed the order of parameters in a log statement 'Grammar delimiters'
Browse files Browse the repository at this point in the history
  • Loading branch information
achaloyan committed May 18, 2023
1 parent fe01236 commit c14d33d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app-unimrcp/app_synthandrecog.c
Original file line number Diff line number Diff line change
Expand Up @@ -1530,7 +1530,7 @@ static int app_synthandrecog_exec(struct ast_channel *chan, ast_app_data data)
if ((sar_options.flags & SAR_GRAMMAR_DELIMITERS) == SAR_GRAMMAR_DELIMITERS) {
if (!ast_strlen_zero(sar_options.params[OPT_ARG_GRAMMAR_DELIMITERS])) {
grammar_delimiters = sar_options.params[OPT_ARG_GRAMMAR_DELIMITERS];
ast_log(LOG_DEBUG, "(%s) Grammar delimiters: %s\n", grammar_delimiters, recog_name);
ast_log(LOG_DEBUG, "(%s) Grammar delimiters: %s\n", recog_name, grammar_delimiters);
}
}
/* Parse the grammar argument into a sequence of grammars. */
Expand Down

0 comments on commit c14d33d

Please sign in to comment.