summaryrefslogtreecommitdiff
path: root/source3/libgpo/gpo_reg.c
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2008-04-14 18:21:21 +0200
committerGünther Deschner <gd@samba.org>2008-04-14 18:21:21 +0200
commite27160183a32ef3cbef1294ec30c83e163be9196 (patch)
tree6657e5de4c7cd71bd0ddfe6e2d17555dbd5c7784 /source3/libgpo/gpo_reg.c
parent113b94faf165994e694c8713d43b990d729b5129 (diff)
downloadsamba-e27160183a32ef3cbef1294ec30c83e163be9196.tar.gz
samba-e27160183a32ef3cbef1294ec30c83e163be9196.tar.bz2
samba-e27160183a32ef3cbef1294ec30c83e163be9196.zip
libgpo: fix build warning.
Thanks metze&vl. Guenther (This used to be commit cb3f1df7d8f35848a432764ea7d6720ec131ede1)
Diffstat (limited to 'source3/libgpo/gpo_reg.c')
-rw-r--r--source3/libgpo/gpo_reg.c5
1 files changed, 3 insertions, 2 deletions
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",