Skip to content

Commit

Permalink
refactor: remove line break after set of lines
Browse files Browse the repository at this point in the history
  • Loading branch information
Neo23x0 committed Oct 17, 2020
1 parent aff101e commit effbb2f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion raccine.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ void logSend(const std::wstring logStr) {
}
}
//transform(logStr.begin(), logStr.end(), logStr.begin(), ::tolower);
fwprintf(logFile, L"%s\n", logStr.c_str());
fwprintf(logFile, L"%s", logStr.c_str());
fflush(logFile);
fclose(logFile);
}
Expand Down

0 comments on commit effbb2f

Please sign in to comment.