From 927a195371a9817e214fb25047e60b216b0acf35 Mon Sep 17 00:00:00 2001 From: Tavian Barnes Date: Sun, 1 Jan 2012 18:00:22 -0500 Subject: Print a backtrace on both warnings and errors. --- libdimension/dimension/error.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libdimension/dimension') diff --git a/libdimension/dimension/error.h b/libdimension/dimension/error.h index 894899a..0ae349f 100644 --- a/libdimension/dimension/error.h +++ b/libdimension/dimension/error.h @@ -30,14 +30,14 @@ /** * Report a warning. - * @param[in] str A string to print explaining the warning. + * @param[in] str A string to print explaining the warning. */ #define dmnsn_warning(str) \ dmnsn_report_error(false, DMNSN_FUNC, __FILE__, __LINE__, str) /** * Report an error. - * @param[in] str A string to print explaining the error. + * @param[in] str A string to print explaining the error. */ #define dmnsn_error(str) \ do { \ -- cgit v1.2.3