1
0
Fork 0
mirror of https://github.com/gwm17/glfw.git synced 2025-01-30 10:58:50 -05:00

Update tutorial

Related to #628.
This commit is contained in:
Camilla Berglund 2015-10-28 23:26:57 +01:00
parent ec7f4d3232
commit ba1f1f8ee9

View File

@ -96,7 +96,7 @@ description to `stderr`.
@code
void error_callback(int error, const char* description)
{
fputs(description, stderr);
fprintf(stderr, "Error: %s\n", description);
}
@endcode