From 3ae8f8f6b97a6d70c2091527d289e211bda88fad Mon Sep 17 00:00:00 2001 From: Kaz Kylheku Date: Fri, 1 Feb 2019 06:07:27 -0800 Subject: style: convert assignment to initialization. * match.c (match_files): Change pointless two-step initialization of a variable by assignment into straight initialization. --- match.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/match.c b/match.c index 3b86ad5c..74c19468 100644 --- a/match.c +++ b/match.c @@ -4609,9 +4609,7 @@ repeat_spec_same_data: if (entry) { v_match_func vmf = coerce(v_match_func, cptr_get(entry)); - val result; - - result = vmf(&c); + val result = vmf(&c); set_last_form_evaled(lfe_save); -- cgit v1.2.3