summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tools/idevicebackup2.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/idevicebackup2.c b/tools/idevicebackup2.c
index 3f38830..d9481f7 100644
--- a/tools/idevicebackup2.c
+++ b/tools/idevicebackup2.c
@@ -76,10 +76,10 @@ enum plist_format_t {
};
enum cmd_flags {
- CMD_FLAG_RESTORE_SYSTEM_FILES = 0,
- CMD_FLAG_RESTORE_REBOOT = (1 << 1),
- CMD_FLAG_RESTORE_COPY_BACKUP = (1 << 2),
- CMD_FLAG_RESTORE_SETTINGS = (1 << 3)
+ CMD_FLAG_RESTORE_SYSTEM_FILES = (1 << 1),
+ CMD_FLAG_RESTORE_REBOOT = (1 << 2),
+ CMD_FLAG_RESTORE_COPY_BACKUP = (1 << 3),
+ CMD_FLAG_RESTORE_SETTINGS = (1 << 4)
};
static void notify_cb(const char *notification, void *userdata)