From 5afabaa690e1c99de27b5975de92f38265f13bea Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Thu, 8 May 2008 17:43:59 +0200 Subject: [PATCH] Revert "gpo: make integer debug print more readable." This reverts commit b2cf8010aea3221bb6b108b9395b9d89cc1bc0d5. --- source/libgpo/gpo_reg.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/source/libgpo/gpo_reg.c b/source/libgpo/gpo_reg.c index 06ebdc444c6..de4a7937ecf 100644 --- a/source/libgpo/gpo_reg.c +++ b/source/libgpo/gpo_reg.c @@ -794,12 +794,10 @@ void dump_reg_val(int lvl, const char *direction, switch (val->type) { case REG_DWORD: - DEBUG(lvl,("%d (0x%08x)\n", - (int)val->v.dword, val->v.dword)); + DEBUG(lvl,("%d\n", (int)val->v.dword)); break; case REG_QWORD: - DEBUG(lvl,("%d (0x%016lx)\n", - (int)val->v.qword, val->v.qword)); + DEBUG(lvl,("%d\n", (int)val->v.qword)); break; case REG_SZ: DEBUG(lvl,("%s (length: %d)\n", -- 2.47.3