We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5ede59f commit 2eb72feCopy full SHA for 2eb72fe
1 file changed
tools-win/DEV7Monitor/DEV7Monitor/DEV7Monitor.cpp
@@ -48,7 +48,7 @@ void startLoader7() {
48
ZeroMemory(&pi, sizeof(pi));
49
50
if (!CreateProcessW(NULL, const_cast<LPWSTR>(command.c_str()), NULL, NULL, FALSE, 0, NULL, NULL, &si, &pi)) {
51
- wcerr << L"Failed to start Loader7.exe." << endl; // Use wcerr for wide-character output
+ fprintf(stderr, "Failed to start Loader7.exe.");
52
}
53
else {
54
CloseHandle(pi.hProcess);
0 commit comments