(svn r8240) -Fix (r8013): Put the output of -h to stdout and not to stderr (through ShowInfo)

pull/155/head
Darkvater 18 years ago
parent 4dd029a393
commit 3afe4b8a7c

@ -174,7 +174,13 @@ static void showhelp(void)
p = GetDriverList(p, lastof(buf));
/* ShowInfo put output to stderr, but version information should go
* to stdout; this is the only exception */
#if !defined(WIN32) && !defined(WIN64)
printf("%s\n", buf);
#else
ShowInfo(buf);
#endif
}

Loading…
Cancel
Save