Now Golded+ outputs errors of reading of a config in stderr instead stdout

This commit is contained in:
Stas Degteff
2011-02-13 13:21:15 +00:00
parent cd61304518
commit 3ebbe6d352
3 changed files with 13 additions and 2 deletions

View File

@@ -202,8 +202,8 @@ typedef uint32_t time32_t; /* 32-bit time_t type */
GUI_Print(str); \
}
#else
#define STD_PRINT(out) std::cout << out;
#define STD_PRINTNL(out) std::cout << out << NL;
#define STD_PRINT(out) std::cerr << out;
#define STD_PRINTNL(out) std::cerr << out << NL;
#endif