From af52799c2d6b00661df7264a9b3faaf630cd85c4 Mon Sep 17 00:00:00 2001 From: John Kessenich Date: Thu, 2 Nov 2017 22:48:15 -0600 Subject: [PATCH] Errors: Have a whole set of tool-level error messages report to stderr. --- StandAlone/StandAlone.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/StandAlone/StandAlone.cpp b/StandAlone/StandAlone.cpp index 265e4f3e..6292a812 100644 --- a/StandAlone/StandAlone.cpp +++ b/StandAlone/StandAlone.cpp @@ -261,7 +261,7 @@ bool SetConfigFile(const std::string& name) // void Error(const char* message) { - printf("%s: Error %s (use -h for usage)\n", ExecutableName, message); + fprintf(stderr, "%s: Error %s (use -h for usage)\n", ExecutableName, message); exit(EFailUsage); } @@ -1090,7 +1090,7 @@ int C_DECL main(int argc, char* argv[]) threads[t] = std::thread(CompileShaders, std::ref(workList)); if (threads[t].get_id() == std::thread::id()) { - printf("Failed to create thread\n"); + fprintf(stderr, "Failed to create thread\n"); return EFailThreadCreate; } }