summaryrefslogtreecommitdiffhomepage
path: root/compat/assert.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'compat/assert.hpp')
-rw-r--r--compat/assert.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/compat/assert.hpp b/compat/assert.hpp
index d9ff2cbe..6e7ef5c0 100644
--- a/compat/assert.hpp
+++ b/compat/assert.hpp
@@ -92,8 +92,8 @@
{ \
if (a != b) [[unlikely]] \
{ \
- DBG_nospace << "fatal: '" << a << "' != '" << b \
- << "' in " << __FILE__ << ":" << __LINE__; \
+ DBG_nospace << "fatal: " << a << " != " << b \
+ << " in " << __FILE__ << ":" << __LINE__; \
fm_EMIT_ABORT(); \
} \
})(__VA_ARGS__)