aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Geerken <devnull@localhost>2014-11-05 15:57:16 +0100
committerSebastian Geerken <devnull@localhost>2014-11-05 15:57:16 +0100
commitfaa8d1b65d9f724445e068d2766356103204728a (patch)
tree41df1042375ad3a0217ef0af0b193f1db5aab9cf
parentcfd0ef52f1a9e869cff9f9e1614b431858121213 (diff)
Updated RTFL macros (fix).
-rw-r--r--lout/debug_rtfl.hh6
1 files changed, 3 insertions, 3 deletions
diff --git a/lout/debug_rtfl.hh b/lout/debug_rtfl.hh
index 1acff6ca..c2ecfd8b 100644
--- a/lout/debug_rtfl.hh
+++ b/lout/debug_rtfl.hh
@@ -215,19 +215,19 @@ inline void rtfl_print (const char *version, const char *file, int line,
DBG_OBJ_ARRSET_NUM_O (this, var, ind, val)
#define DBG_OBJ_ARRSET_NUM_O(obj, var, ind, val) \
- RTFL_OBJ_PRINT ("set", "p:s.d:s", obj, var, ind, val)
+ RTFL_OBJ_PRINT ("set", "p:s.d:d", obj, var, ind, val)
#define DBG_OBJ_ARRSET_SYM(var, ind, val) \
DBG_OBJ_ARRSET_SYM_O (this, var, ind, val)
#define DBG_OBJ_ARRSET_SYM_O(obj, var, ind, val) \
- RTFL_OBJ_PRINT ("set", "p:s.d:d", obj, var, ind, val)
+ RTFL_OBJ_PRINT ("set", "p:s.d:s", obj, var, ind, val)
#define DBG_OBJ_ARRSET_BOOL(var, ind, val) \
DBG_OBJ_ARRSET_BOOL_O (this, var, ind, val)
#define DBG_OBJ_ARRSET_BOOL_O(obj, var, ind, val) \
- RTFL_OBJ_PRINT ("set", "p:s.d:d", obj, var, ind, (val) ? "true" : "false")
+ RTFL_OBJ_PRINT ("set", "p:s.d:s", obj, var, ind, (val) ? "true" : "false")
#define DBG_OBJ_ARRSET_STR(var, ind, val) \
DBG_OBJ_ARRSET_STR_O (this, var, ind, val)