From 159c57852827e79c7feba389d20bc4bc6db63160 Mon Sep 17 00:00:00 2001 From: Andi Shyti Date: Fri, 26 Jul 2013 15:41:31 +0200 Subject: accman.c: if else coding style fix Make if state statement to appear in the following format: if (...) { ... } else { ... } Signed-off-by: Andi Shyti --- accman.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/accman.c b/accman.c index 75cab8c..90783c3 100644 --- a/accman.c +++ b/accman.c @@ -100,9 +100,9 @@ int main (void) if (confirm(usr)) { db_insert_user(usr); printf("User %s inserted correctly\n", usr.n); - } - else + } else { printf("user insertion aborted\n"); + } return 0; } -- cgit v1.2.3