Use fprintf in error callback of simple example

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

Closes #628.
master
Роман Донченко ago%!(EXTRA string=10 years) committed by Camilla Berglund
parent 51c0c88772
commit ec7f4d3232
  1. 2
      examples/simple.c

@ -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)

Loading…
Cancel
Save