From 04470019c3b959d7b47a10698c6880b951daeb15 Mon Sep 17 00:00:00 2001 From: Martin Szulecki Date: Thu, 4 Jun 2020 05:00:43 +0200 Subject: Reformat indentation of option struct for readability --- src/idevicerestore.c | 38 +++++++++++++++++++------------------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/src/idevicerestore.c b/src/idevicerestore.c index 2c5f88c..05307e2 100644 --- a/src/idevicerestore.c +++ b/src/idevicerestore.c @@ -58,25 +58,25 @@ #ifndef IDEVICERESTORE_NOMAIN static struct option longopts[] = { - { "ecid", required_argument, NULL, 'i' }, - { "udid", required_argument, NULL, 'u' }, - { "debug", no_argument, NULL, 'd' }, - { "help", no_argument, NULL, 'h' }, - { "erase", no_argument, NULL, 'e' }, - { "custom", no_argument, NULL, 'c' }, - { "latest", no_argument, NULL, 'l' }, - { "cydia", no_argument, NULL, 's' }, - { "exclude", no_argument, NULL, 'x' }, - { "shsh", no_argument, NULL, 't' }, - { "keep-pers", no_argument, NULL, 'k' }, - { "pwn", no_argument, NULL, 'p' }, - { "no-action", no_argument, NULL, 'n' }, - { "cache-path", required_argument, NULL, 'C' }, - { "no-input", no_argument, NULL, 'y' }, - { "plain-progress", no_argument, NULL, 'P' }, - { "restore-mode", no_argument, NULL, 'R' }, - { "ticket", required_argument, NULL, 'T' }, - { "no-restore", no_argument, NULL, 'z' }, + { "ecid", required_argument, NULL, 'i' }, + { "udid", required_argument, NULL, 'u' }, + { "debug", no_argument, NULL, 'd' }, + { "help", no_argument, NULL, 'h' }, + { "erase", no_argument, NULL, 'e' }, + { "custom", no_argument, NULL, 'c' }, + { "latest", no_argument, NULL, 'l' }, + { "cydia", no_argument, NULL, 's' }, + { "exclude", no_argument, NULL, 'x' }, + { "shsh", no_argument, NULL, 't' }, + { "keep-pers", no_argument, NULL, 'k' }, + { "pwn", no_argument, NULL, 'p' }, + { "no-action", no_argument, NULL, 'n' }, + { "cache-path", required_argument, NULL, 'C' }, + { "no-input", no_argument, NULL, 'y' }, + { "plain-progress", no_argument, NULL, 'P' }, + { "restore-mode", no_argument, NULL, 'R' }, + { "ticket", required_argument, NULL, 'T' }, + { "no-restore", no_argument, NULL, 'z' }, { NULL, 0, NULL, 0 } }; -- cgit v1.1-32-gdbae