From b95e05b65d69af3f23513c4af9e50c9af326b43f Mon Sep 17 00:00:00 2001 From: axtloss Date: Sun, 14 Jul 2024 18:12:54 +0200 Subject: dont put multiple statmeents in one line --- src/main.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/main.c') diff --git a/src/main.c b/src/main.c index 8028c4f..1978409 100644 --- a/src/main.c +++ b/src/main.c @@ -135,10 +135,10 @@ int main (int argc, char *argv[]) { EXIT: for (int i = 0; i < ccmds_len; i++) compile_cmd_free (ccmds[i]); - if (excmd) free (excmd); - if (ccmds) free (ccmds); - if (tmpdir) free (tmpdir); - if (cmd) free (cmd); - if (compile_file) free (compile_file); + free (excmd); + free (ccmds); + free (tmpdir); + free (cmd); + free (compile_file); exit(errno % 255); } -- cgit v1.2.3