summaryrefslogtreecommitdiff
path: root/include/share
diff options
context:
space:
mode:
Diffstat (limited to 'include/share')
-rw-r--r--include/share/macros.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/include/share/macros.h b/include/share/macros.h
index 5b9cf4e1..eea62c10 100644
--- a/include/share/macros.h
+++ b/include/share/macros.h
@@ -32,10 +32,14 @@
#include <errno.h>
/* FLAC_CHECK_RETURN : Check the return value of the provided function and
- * print and error message if it fails (ie returns a value < 0).
+ * print an error message if it fails (ie returns a value < 0).
+ *
+ * Ideally, a library should not print anything, but this macro is only used
+ * for things that extremely unlikely to fail, like `chown` to a previoulsy
+ * saved `uid`.
*/
#define FLAC_CHECK_RETURN(x) \
{ if ((x) < 0) \
- printf ("%s : %s\n", #x, strerror (errno)) ; \
+ fprintf (stderr, "%s : %s\n", #x, strerror (errno)) ; \
}