aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--crypt.c16
1 files 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();
}
}