Skip to content

Commit

Permalink
Removed Extraneous Character In /Log Output
Browse files Browse the repository at this point in the history
- Removed newline character that was being appended to "Path" field in /Log output.
  • Loading branch information
NoMoreFood committed Dec 17, 2018
1 parent fa1c183 commit 36d72ab
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
Binary file modified Build/Release/x64/repacls.exe
Binary file not shown.
Binary file modified Build/Release/x86/repacls.exe
Binary file not shown.
Binary file modified Build/Repacls.zip
Binary file not shown.
4 changes: 2 additions & 2 deletions InputOutput.h
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ class InputOutput
else iPrefix = 0;
}

GetFileName() = sPrefix + sLine.substr(iPrefix) + L"\n";
GetFileName() = sPrefix + sLine.substr(iPrefix);
GetDetail() = L"";
}

Expand Down Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions Version.h
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 36d72ab

Please sign in to comment.