From e27160183a32ef3cbef1294ec30c83e163be9196 Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Mon, 14 Apr 2008 18:21:21 +0200 Subject: libgpo: fix build warning. Thanks metze&vl. Guenther (This used to be commit cb3f1df7d8f35848a432764ea7d6720ec131ede1) --- source3/libgpo/gpo_reg.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'source3/libgpo') diff --git a/source3/libgpo/gpo_reg.c b/source3/libgpo/gpo_reg.c index 06ebdc444c..7a005d85a2 100644 --- a/source3/libgpo/gpo_reg.c +++ b/source3/libgpo/gpo_reg.c @@ -798,8 +798,9 @@ void dump_reg_val(int lvl, const char *direction, (int)val->v.dword, val->v.dword)); break; case REG_QWORD: - DEBUG(lvl,("%d (0x%016lx)\n", - (int)val->v.qword, val->v.qword)); + DEBUG(lvl,("%d (0x%016llx)\n", + (int)val->v.qword, + (unsigned long long)val->v.qword)); break; case REG_SZ: DEBUG(lvl,("%s (length: %d)\n", -- cgit