From 3a6e51a12f0618300bc8f0198d7a9b595945e2ac Mon Sep 17 00:00:00 2001 From: Lee Thomason Date: Thu, 6 Jul 2017 17:08:37 -0700 Subject: [PATCH] fix build issue --- xmltest.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/xmltest.cpp b/xmltest.cpp index 9fedbe3..b6ad3b3 100644 --- a/xmltest.cpp +++ b/xmltest.cpp @@ -338,6 +338,7 @@ int main( int argc, const char ** argv ) } fclose( fp ); +#if 0 #if defined WIN32 if ( !CreateDirectory( L"resources\\out", NULL ) && GetLastError() != ERROR_ALREADY_EXISTS ) { #else @@ -346,7 +347,7 @@ int main( int argc, const char ** argv ) printf( "Unable to create directory 'resources/out': %s\n", strerror( errno ) ); exit( 1 ); } - +#endif XMLTest( "Example-1", 0, example_1() ); XMLTest( "Example-2", 0, example_2() ); XMLTest( "Example-3", 0, example_3() );