From e06083196405fdba3a32a772ff99cae50c0f7019 Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Thu, 8 May 2008 17:43:58 +0200 Subject: [PATCH] Revert "libgpo: fix build warning." This reverts commit cb3f1df7d8f35848a432764ea7d6720ec131ede1. --- source/libgpo/gpo_reg.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/source/libgpo/gpo_reg.c b/source/libgpo/gpo_reg.c index 7a005d85a29..06ebdc444c6 100644 --- a/source/libgpo/gpo_reg.c +++ b/source/libgpo/gpo_reg.c @@ -798,9 +798,8 @@ void dump_reg_val(int lvl, const char *direction, (int)val->v.dword, val->v.dword)); break; case REG_QWORD: - DEBUG(lvl,("%d (0x%016llx)\n", - (int)val->v.qword, - (unsigned long long)val->v.qword)); + DEBUG(lvl,("%d (0x%016lx)\n", + (int)val->v.qword, val->v.qword)); break; case REG_SZ: DEBUG(lvl,("%s (length: %d)\n", -- 2.47.3