summaryrefslogtreecommitdiffhomepage
path: root/compat
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2022-10-30 11:40:08 +0100
committerStanislaw Halik <sthalik@misaki.pl>2022-10-30 11:40:08 +0100
commitaeae172afefaa7a924610208a757a4c09f15b04f (patch)
treeb63f9b93689f9236becd1be17d618df21e05c6b1 /compat
parent1b9336782dbff5b24b90648d7cbf98e744ef75bb (diff)
remove quotes in assert failure message
Diffstat (limited to 'compat')
-rw-r--r--compat/assert.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/compat/assert.hpp b/compat/assert.hpp
index 58edbc15..f1857fe1 100644
--- a/compat/assert.hpp
+++ b/compat/assert.hpp
@@ -53,7 +53,7 @@ namespace floormat {
#define fm_assert(...) \
do { \
if (!(__VA_ARGS__)) { \
- fm_EMIT_DEBUG("", "assertion failed: '%s' in %s:%d", \
+ fm_EMIT_DEBUG("", "assertion failed: %s in %s:%d", \
#__VA_ARGS__, __FILE__, __LINE__); \
::floormat::_fm_abort(); \
} \