diff options
author | Martin Szulecki | 2020-06-08 23:49:45 +0200 |
---|---|---|
committer | Martin Szulecki | 2020-06-08 23:49:45 +0200 |
commit | 0a5547e97bfd0c0e95c4efb032bc2867cc5a60f0 (patch) | |
tree | 01b051007d0e87d3a7c43020457500acf9b17c48 /src/common.c | |
parent | 60e69ac4759026ab564280b8406c7ac1c840b6b0 (diff) | |
download | idevicerestore-0a5547e97bfd0c0e95c4efb032bc2867cc5a60f0.tar.gz idevicerestore-0a5547e97bfd0c0e95c4efb032bc2867cc5a60f0.tar.bz2 |
Remove trailing whitespace errors from all files
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 6f113c5..b5c88ee 100644 --- a/src/common.c +++ b/src/common.c @@ -290,7 +290,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) { |