From aeae172afefaa7a924610208a757a4c09f15b04f Mon Sep 17 00:00:00 2001 From: Stanislaw Halik Date: Sun, 30 Oct 2022 11:40:08 +0100 Subject: remove quotes in assert failure message --- compat/assert.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(); \ } \ -- cgit v1.2.3