From a46cbc55b62181699218a65b43426ae8954b8149 Mon Sep 17 00:00:00 2001 From: Klas Lindfors Date: Tue, 24 Jun 2014 13:58:47 +0200 Subject: [PATCH] fix indentation --- tool/yubico-piv-tool.c | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/tool/yubico-piv-tool.c b/tool/yubico-piv-tool.c index 3044a50..95c2c7c 100644 --- a/tool/yubico-piv-tool.c +++ b/tool/yubico-piv-tool.c @@ -1067,15 +1067,15 @@ int main(int argc, char *argv[]) { } break; case action_arg_deleteMINUS_certificate: - if(args_info.slot_arg == slot__NULL) { - fprintf(stderr, "The delete-certificate action needs a slot (-s) to operate on.\n"); - ret = EXIT_FAILURE; - } else { - if(delete_certificate(state, args_info.slot_arg) == false) { - ret = EXIT_FAILURE; - } - } - break; + if(args_info.slot_arg == slot__NULL) { + fprintf(stderr, "The delete-certificate action needs a slot (-s) to operate on.\n"); + ret = EXIT_FAILURE; + } else { + if(delete_certificate(state, args_info.slot_arg) == false) { + ret = EXIT_FAILURE; + } + } + break; case action__NULL: default: fprintf(stderr, "Wrong action. %d.\n", action);