From 61ef82ec2b2ca396667f92a4e5c6ceb729c42086 Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Sun, 15 May 2016 17:11:27 +0300 Subject: Port to MinGW --- butl/path.cxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'butl/path.cxx') diff --git a/butl/path.cxx b/butl/path.cxx index 1f8f195..0ec71d1 100644 --- a/butl/path.cxx +++ b/butl/path.cxx @@ -56,7 +56,7 @@ namespace butl #ifdef _WIN32 char cwd[_MAX_PATH]; - if(_getcwd (cwd, _MAX_PATH) == 0) + if (_getcwd (cwd, _MAX_PATH) == 0) throw system_error (errno, system_category ()); #else char cwd[PATH_MAX]; @@ -72,7 +72,7 @@ namespace butl current (string_type const& s) { #ifdef _WIN32 - if(_chdir (s.c_str ()) != 0) + if (_chdir (s.c_str ()) != 0) throw system_error (errno, system_category ()); #else if (chdir (s.c_str ()) != 0) @@ -193,7 +193,7 @@ namespace butl { #ifdef _WIN32 wchar_t wcwd[_MAX_PATH]; - if(_wgetcwd (wcwd, _MAX_PATH) == 0) + if (_wgetcwd (wcwd, _MAX_PATH) == 0) throw system_error (errno, system_category ()); #else char cwd[PATH_MAX]; @@ -213,7 +213,7 @@ namespace butl current (string_type const& s) { #ifdef _WIN32 - if(_wchdir (s.c_str ()) != 0) + if (_wchdir (s.c_str ()) != 0) throw system_error (errno, system_category ()); #else char ns[PATH_MAX + 1]; -- cgit v1.1