Skip to content

Commit a72d632

Browse files
committed
Fix incorrect return statement.
1 parent e04cb59 commit a72d632

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

source/tclie.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -372,7 +372,7 @@ static void tclie_pattern_match_complete_token(const tclie_token_t *const token,
372372
if (p->complete.match != p->argv[(*p->arg_index)])
373373
return;
374374

375-
return tclie_pattern_match_complete(token->str, token->len, p, match, NULL);
375+
tclie_pattern_match_complete(token->str, token->len, p, match, NULL);
376376
}
377377

378378
static void tclie_pattern_match_complete_options(tclie_pattern_param_t *const p)

0 commit comments

Comments
 (0)