From 668f73c0d68233c5fec0a1ff4f69c071170b162b Mon Sep 17 00:00:00 2001 From: Rosen Penev Date: Sat, 21 Dec 2019 13:24:08 -0800 Subject: [PATCH] [clang-tidy] Fix wrong declaration Found with readability-inconsistent-declaration-parameter-name --- src/parse_execution.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/parse_execution.h b/src/parse_execution.h index b9c7a4d90..52a8ff2f1 100644 --- a/src/parse_execution.h +++ b/src/parse_execution.h @@ -123,7 +123,7 @@ class parse_execution_context_t { // Determines the list of redirections for a node. Returns none() on failure, for example, an // invalid fd. bool determine_redirections(tnode_t node, - redirection_spec_list_t *out_redirs); + redirection_spec_list_t *out_redirections); eval_result_t run_1_job(tnode_t job, const block_t *associated_block); eval_result_t run_job_conjunction(tnode_t job_expr,