summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGravatar Martin Szulecki2020-06-04 05:00:43 +0200
committerGravatar Martin Szulecki2020-06-04 05:00:43 +0200
commit04470019c3b959d7b47a10698c6880b951daeb15 (patch)
tree23d34bcd884484e69020078644b0e11e3a7bc268 /src
parent37eb84e92e44c868f2a453e6afde57e7f4e98d16 (diff)
downloadidevicerestore-04470019c3b959d7b47a10698c6880b951daeb15.tar.gz
idevicerestore-04470019c3b959d7b47a10698c6880b951daeb15.tar.bz2
Reformat indentation of option struct for readability
Diffstat (limited to 'src')
-rw-r--r--src/idevicerestore.c38
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 }
};