From 0af631e9756162ef39eb0ab1a9019792f88676db Mon Sep 17 00:00:00 2001 From: Danny Robson Date: Fri, 12 Feb 2016 12:57:53 +1100 Subject: [PATCH] debug: fix CHECK_ENUM format string specifier --- debug.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debug.hpp b/debug.hpp index 8aa1e7c4..7a0f97e7 100644 --- a/debug.hpp +++ b/debug.hpp @@ -229,7 +229,7 @@ std::cend (__e), \ __c) == std::end (__e)) { \ _CHECK_PANIC("expect enum\n" \ - "__c: %s is $!", \ + "__c: %s is %!", \ #C, __c); \ } \ } while (0)