diff options
author | Martin Szulecki | 2020-06-04 05:00:43 +0200 |
---|---|---|
committer | Martin Szulecki | 2020-06-04 05:00:43 +0200 |
commit | 04470019c3b959d7b47a10698c6880b951daeb15 (patch) | |
tree | 23d34bcd884484e69020078644b0e11e3a7bc268 | |
parent | 37eb84e92e44c868f2a453e6afde57e7f4e98d16 (diff) | |
download | idevicerestore-04470019c3b959d7b47a10698c6880b951daeb15.tar.gz idevicerestore-04470019c3b959d7b47a10698c6880b951daeb15.tar.bz2 |
Reformat indentation of option struct for readability
-rw-r--r-- | src/idevicerestore.c | 38 |
1 files 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 } }; |