From 640917131f4f403f1d84ee2ff4d5a33c08a9c53a Mon Sep 17 00:00:00 2001
From: Tavian Barnes <tavianator@gmail.com>
Date: Wed, 25 Nov 2009 14:09:15 -0500
Subject: Add source filename to dmnsn_error() output.

---
 libdimension/dimension/error.h | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

(limited to 'libdimension/dimension')

diff --git a/libdimension/dimension/error.h b/libdimension/dimension/error.h
index caee303..cc9e248 100644
--- a/libdimension/dimension/error.h
+++ b/libdimension/dimension/error.h
@@ -44,11 +44,14 @@ typedef enum {
 
 /* Use this macro to report an error */
 #define dmnsn_error(severity, str)                                             \
-  dmnsn_report_error((dmnsn_severity)(severity), DMNSN_FUNC, __LINE__, (str))
+  dmnsn_report_error((dmnsn_severity)(severity),                               \
+                     DMNSN_FUNC, __FILE__, __LINE__,                           \
+                     str)
 
 /* Called by dmnsn_error() - don't call directly */
 void dmnsn_report_error(dmnsn_severity severity,
-                        const char *func, unsigned int line, const char *str);
+                        const char *func, const char *file, unsigned int line,
+                        const char *str);
 
 /* Get and set the library resilience, thread-safely */
 dmnsn_severity dmnsn_get_resilience();
-- 
cgit v1.2.3