summaryrefslogtreecommitdiff
path: root/common/debug.h
diff options
context:
space:
mode:
authortmk <nobody@nowhere>2013-01-29 10:40:43 +0900
committertmk <nobody@nowhere>2013-01-29 10:40:43 +0900
commitddb560052a8a336b5cec64ce08399c8299c9b4da (patch)
tree2fa3ea010b5942cbf21a4275805c66b5b82b9bff /common/debug.h
parent1e3e41a2c9ed8b2f7d44be0aed5d96ed557fa13d (diff)
Clean debug print in action.c.
Diffstat (limited to 'common/debug.h')
-rw-r--r--common/debug.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/common/debug.h b/common/debug.h
index 648f0e096c..e63d46f0e9 100644
--- a/common/debug.h
+++ b/common/debug.h
@@ -36,6 +36,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#define debug_dec(data) do { if (debug_enable) print_dec(data); } while (0)
#define debug_decs(data) do { if (debug_enable) print_decs(data); } while (0)
+#define debug_hex4(data) do { if (debug_enable) print_hex4(data); } while (0)
#define debug_hex8(data) do { if (debug_enable) print_hex8(data); } while (0)
#define debug_hex16(data) do { if (debug_enable) print_hex16(data); } while (0)
#define debug_hex32(data) do { if (debug_enable) print_hex32(data); } while (0)