Skip to content

Commit

Permalink
Fix inverted condition
Browse files Browse the repository at this point in the history
  • Loading branch information
kou committed Jan 21, 2019
1 parent 369e725 commit 825c10b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/ii.c
Expand Up @@ -3033,7 +3033,7 @@ merge_dump_source(grn_ctx *ctx,
{
merge_dump_source_data data;

if (grn_logger_pass(ctx, log_level)) {
if (!grn_logger_pass(ctx, log_level)) {
return;
}

Expand Down

0 comments on commit 825c10b

Please sign in to comment.