Update tutorial

Related to #628.
This commit is contained in:
Camilla Berglund
2015-10-28 23:26:57 +01:00
parent ec7f4d3232
commit ba1f1f8ee9
+1 -1
View File
@@ -96,7 +96,7 @@ description to `stderr`.
@code @code
void error_callback(int error, const char* description) void error_callback(int error, const char* description)
{ {
fputs(description, stderr); fprintf(stderr, "Error: %s\n", description);
} }
@endcode @endcode