diff options
author | Martin Szulecki | 2013-09-26 23:01:05 +0200 |
---|---|---|
committer | Martin Szulecki | 2013-09-26 23:01:05 +0200 |
commit | ad7ae3c8db91f2a33bba5615cf1b1a9035f7917a (patch) | |
tree | abaf7468f1689b359b401efdfaa8e191ddd28cea /tools | |
parent | c68efda6ef497fa00307b9478c9f3d818e540f51 (diff) | |
download | libirecovery-ad7ae3c8db91f2a33bba5615cf1b1a9035f7917a.tar.gz libirecovery-ad7ae3c8db91f2a33bba5615cf1b1a9035f7917a.tar.bz2 |
Put each item of command enum in a separate line
Diffstat (limited to 'tools')
-rw-r--r-- | tools/irecovery.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/tools/irecovery.c b/tools/irecovery.c index 5c82a00..a46d5df 100644 --- a/tools/irecovery.c +++ b/tools/irecovery.c @@ -36,7 +36,12 @@ #define debug(...) if(verbose) fprintf(stderr, __VA_ARGS__) enum { - kResetDevice, kStartShell, kSendCommand, kSendFile, kSendExploit, kSendScript + kResetDevice, + kStartShell, + kSendCommand, + kSendFile, + kSendExploit, + kSendScript }; static unsigned int quit = 0; |