Use fprintf in error callback of simple example

Besides improving consistency, this also ensures that error messages end
with newlines.

Closes #628.
This commit is contained in:
Роман Донченко 2015-10-28 23:10:44 +03:00 committed by Camilla Berglund
parent 51c0c88772
commit ec7f4d3232
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@
static void error_callback(int error, const char* description)
{
fputs(description, stderr);
fprintf(stderr, "Error: %s\n", description);
}
static void key_callback(GLFWwindow* window, int key, int scancode, int action, int mods)