From: Martin Matuska Date: Mon, 7 Feb 2022 09:48:51 +0000 (+0100) Subject: untar.c: style fixes X-Git-Tag: v3.6.0~9 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9e5279615033fa073d0bbae83b366359eab3b62f;p=thirdparty%2Flibarchive.git untar.c: style fixes --- diff --git a/contrib/untar.c b/contrib/untar.c index 4d10c2641..2550e510a 100644 --- a/contrib/untar.c +++ b/contrib/untar.c @@ -82,11 +82,11 @@ create_dir(char *pathname, int mode) pathname[strlen(pathname) - 1] = '\0'; /* Try creating the directory. */ - #if defined(_WIN32) && !defined(__CYGWIN__) - r = _mkdir(pathname); - #else - r = mkdir(pathname, mode); - #endif +#if defined(_WIN32) && !defined(__CYGWIN__) + r = _mkdir(pathname); +#else + r = mkdir(pathname, mode); +#endif if (r != 0) { /* On failure, try creating parent directory. */ @@ -95,11 +95,11 @@ create_dir(char *pathname, int mode) *p = '\0'; create_dir(pathname, 0755); *p = '/'; - #if defined(_WIN32) && !defined(__CYGWIN__) - r = _mkdir(pathname); - #else - r = mkdir(pathname, mode); - #endif +#if defined(_WIN32) && !defined(__CYGWIN__) + r = _mkdir(pathname); +#else + r = mkdir(pathname, mode); +#endif } } if (r != 0)