diff --git a/Build/Release/x64/repacls.exe b/Build/Release/x64/repacls.exe index 42cf8cd..56f9735 100644 Binary files a/Build/Release/x64/repacls.exe and b/Build/Release/x64/repacls.exe differ diff --git a/Build/Release/x86/repacls.exe b/Build/Release/x86/repacls.exe index 865f5e9..9103811 100644 Binary files a/Build/Release/x86/repacls.exe and b/Build/Release/x86/repacls.exe differ diff --git a/Build/Repacls.zip b/Build/Repacls.zip index 9aba757..7275011 100644 Binary files a/Build/Repacls.zip and b/Build/Repacls.zip differ diff --git a/InputOutput.h b/InputOutput.h index 46a10e3..0c4a40d 100644 --- a/InputOutput.h +++ b/InputOutput.h @@ -73,7 +73,7 @@ class InputOutput else iPrefix = 0; } - GetFileName() = sPrefix + sLine.substr(iPrefix) + L"\n"; + GetFileName() = sPrefix + sLine.substr(iPrefix); GetDetail() = L""; } @@ -116,7 +116,7 @@ class InputOutput // output to screen if there is anything to write if (!GetFileName().empty() && !GetDetail().empty()) { - wprintf(L"FILE: %s", (GetFileName() + GetDetail()).c_str()); + wprintf(L"FILE: %s", (GetFileName() + L"\n" + GetDetail()).c_str()); } // clear out buffer now that it's printed diff --git a/Version.h b/Version.h index e4cef6f..409bc0f 100644 --- a/Version.h +++ b/Version.h @@ -1,4 +1,4 @@ #pragma once -#define VERSION_STRING "1.10.0.0" -#define VERSION_COMMA 1,10,0,0 +#define VERSION_STRING "1.10.0.1" +#define VERSION_COMMA 1,10,0,1