From ba1f1f8ee909eeff9b6cda23562530f4276f19ca Mon Sep 17 00:00:00 2001 From: Camilla Berglund Date: Wed, 28 Oct 2015 23:26:57 +0100 Subject: [PATCH] Update tutorial Related to #628. --- docs/quick.dox | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/quick.dox b/docs/quick.dox index 79db9704..42b5d9c7 100644 --- a/docs/quick.dox +++ b/docs/quick.dox @@ -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