Details
-
Improvement
-
Resolution: Unresolved
-
Minor
-
None
Description
It looks like some errors are reported to StdOut instead of StdErr.
Fix these cases, or add a comment if intended.
https://github.com/reactos/reactos/blob/master/base/system/format/format.c
–
Example:
if (!LoadFMIFSEntryPoints()) |
{
|
ConPrintf(StdOut, szMsg, ProgramName, L""); |
return; |
}
|
// ...
|
if (!LoadFMIFSEntryPoints()) |
{
|
ConResPuts(StdErr, STRING_FMIFS_FAIL);
|
return -1; |
}
|