diff options
author | Martin Szulecki | 2015-01-30 17:13:58 +0100 |
---|---|---|
committer | Martin Szulecki | 2015-01-30 17:13:58 +0100 |
commit | 46f8532a1b55edbb3367dc7524701ee23bc6175c (patch) | |
tree | 374784862ee3b5a9e38e11ebc830dff605e80f18 /src/common.c | |
parent | 8f01a6ee7f4a0da815c96882a67cc3e83590b3e6 (diff) | |
download | idevicerestore-46f8532a1b55edbb3367dc7524701ee23bc6175c.tar.gz idevicerestore-46f8532a1b55edbb3367dc7524701ee23bc6175c.tar.bz2 |
Fix a bunch of trailing whitespace errorsfixtrailingwhitespaces
Diffstat (limited to 'src/common.c')
-rw-r--r-- | src/common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common.c b/src/common.c index 6451e07..ef68338 100644 --- a/src/common.c +++ b/src/common.c @@ -253,7 +253,7 @@ int mkdir_with_parents(const char *dir, int mode) if (parentdir && (strcmp(parentdir, ".") != 0) && (strcmp(parentdir, dir) != 0)) { res = mkdir_with_parents(parentdir, mode); } else { - res = -1; + res = -1; } free(parent); if (res == 0) { |