Skip to content
Snippets Groups Projects
Commit 9000b633 authored by Brad King's avatar Brad King
Browse files

BUG: Removed stray debugging code that caused win9x mode to always be used.

parent aeffe559
No related branches found
No related tags found
No related merge requests found
......@@ -266,7 +266,7 @@ kwsysProcess* kwsysProcess_New()
ZeroMemory(&osv, sizeof(osv));
osv.dwOSVersionInfoSize = sizeof(osv);
GetVersionEx(&osv);
if(osv.dwPlatformId == VER_PLATFORM_WIN32_WINDOWS || 1)
if(osv.dwPlatformId == VER_PLATFORM_WIN32_WINDOWS)
{
/* This is Win9x. We need the console forwarding executable to
work-around a Windows 9x bug. */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment