From: Michael Haggerty Date: Mon, 6 Jan 2014 13:45:19 +0000 (+0100) Subject: safe_create_leading_directories(): fix format of "if" chaining X-Git-Tag: v1.9-rc1~10^2~16 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=53a3972171723d5d67178c9eba03112931a86cae;p=git safe_create_leading_directories(): fix format of "if" chaining Signed-off-by: Michael Haggerty Signed-off-by: Junio C Hamano --- diff --git a/sha1_file.c b/sha1_file.c index 760dd60031..56b51b03e4 100644 --- a/sha1_file.c +++ b/sha1_file.c @@ -125,8 +125,7 @@ int safe_create_leading_directories(char *path) *pos = '/'; return -3; } - } - else if (mkdir(path, 0777)) { + } else if (mkdir(path, 0777)) { if (errno == EEXIST && !stat(path, &st) && S_ISDIR(st.st_mode)) { ; /* somebody created it since we checked */ @@ -134,8 +133,7 @@ int safe_create_leading_directories(char *path) *pos = '/'; return -1; } - } - else if (adjust_shared_perm(path)) { + } else if (adjust_shared_perm(path)) { *pos = '/'; return -2; }