From 0e607542dca1247217997184224fc1a779778166 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Mon, 30 Mar 2020 10:55:31 +0200 Subject: cleanup: insert newline after if() conditions Our code style mandates we put the conditional block on a separate line. These mistakes are now detected by the updated checksrc. --- tests/unit/unit1394.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'tests/unit/unit1394.c') diff --git a/tests/unit/unit1394.c b/tests/unit/unit1394.c index 6855fc7ab..d6644f8eb 100644 --- a/tests/unit/unit1394.c +++ b/tests/unit/unit1394.c @@ -122,8 +122,10 @@ UNITTEST_START fail("assertion failure"); } } - if(certname) free(certname); - if(passphrase) free(passphrase); + if(certname) + free(certname); + if(passphrase) + free(passphrase); } UNITTEST_STOP -- cgit v1.2.3