summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/cstore/cstore.hpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/cstore/cstore.hpp b/src/cstore/cstore.hpp
index d1d01fa..872fe1e 100644
--- a/src/cstore/cstore.hpp
+++ b/src/cstore/cstore.hpp
@@ -31,7 +31,9 @@
#define ASSERT_IN_SESSION do \
{ \
if (!inSession()) { \
- exit_internal("no session\n"); \
+ output_user("Internal error: calling %s() without config session\n", \
+ __func__); \
+ exit_internal("calling %s() without config session\n", __func__); \
} \
} while (0);