aboutsummaryrefslogtreecommitdiffstats
path: root/src/include/common.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/common.h')
-rw-r--r--src/include/common.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/include/common.h b/src/include/common.h
index 23b00b6f8..4a2b8c1bf 100644
--- a/src/include/common.h
+++ b/src/include/common.h
@@ -41,7 +41,8 @@
41 41
42#define errExit(msg) do { \ 42#define errExit(msg) do { \
43 char msgout[500]; \ 43 char msgout[500]; \
44 snprintf(msgout, 500, "Error %s: %s:%d %s", msg, __FILE__, __LINE__, __func__); \ 44 snprintf(msgout, 500, "Error %s/%s:%d %s(): %s", \
45 MOD_DIR, __FILE__, __LINE__, __func__, msg); \
45 perror(msgout); \ 46 perror(msgout); \
46 exit(1); \ 47 exit(1); \
47} while (0) 48} while (0)