From f006a81d3e675718e5a56d92f73ea60764691a24 Mon Sep 17 00:00:00 2001 From: Thomas Davis Date: Wed, 9 Oct 2013 18:07:10 -0400 Subject: [PATCH] indent --- src/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.c b/src/main.c index 02fce98d..c8dff6ef 100644 --- a/src/main.c +++ b/src/main.c @@ -344,7 +344,7 @@ static void verify_existence(char **options, const char *option_name, struct stat st; const char *path = get_option(options, option_name); - #ifdef _WIN32 +#ifdef _WIN32 wchar_t wbuf[1024]; char mbbuf[1024]; int len; @@ -356,7 +356,7 @@ static void verify_existence(char **options, const char *option_name, wcstombs(mbbuf, wbuf, sizeof(mbbuf)-1); path = mbbuf; } - #endif +#endif if (path != NULL && (stat(path, &st) != 0 || ((S_ISDIR(st.st_mode) ? 1 : 0) != must_be_dir))) {