From 3927568ecb614e58fd869e4defcf3dcc8ab7938e Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Thu, 16 Jan 2020 18:47:33 +1300 Subject: Adjust indentation of switch block --- crypt.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/crypt.c b/crypt.c index 4f085b1..e704cfa 100644 --- a/crypt.c +++ b/crypt.c @@ -7,14 +7,14 @@ int main (int argc, char **argv) while ((opt = getopt(argc, argv, "h")) != -1) { switch (opt) { - case 'h': /* Help */ - usage(stdout, EXIT_SUCCESS); - break; - case '?': /* Unknown option */ - usage(stderr, EXIT_FAILURE); - break; - default: /* Shouldn't happen */ - abort(); + case 'h': /* Help */ + usage(stdout, EXIT_SUCCESS); + break; + case '?': /* Unknown option */ + usage(stderr, EXIT_FAILURE); + break; + default: /* Shouldn't happen */ + abort(); } } -- cgit v1.2.3