From 0a5547e97bfd0c0e95c4efb032bc2867cc5a60f0 Mon Sep 17 00:00:00 2001 From: Martin Szulecki Date: Mon, 8 Jun 2020 23:49:45 +0200 Subject: Remove trailing whitespace errors from all files --- src/common.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/common.c') 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) { -- cgit v1.1-32-gdbae