[SCM] Samba Shared Repository - branch v3-2-test updated - release-3-2-0pre2-907-gcb3f1df

Günther Deschner gd at samba.org
Mon Apr 14 16:23:34 GMT 2008


The branch, v3-2-test has been updated
       via  cb3f1df7d8f35848a432764ea7d6720ec131ede1 (commit)
      from  8331fbe735e2bec386ab8fc1645dc371d45d3063 (commit)

http://gitweb.samba.org/?p=samba.git;a=shortlog;h=v3-2-test


- Log -----------------------------------------------------------------
commit cb3f1df7d8f35848a432764ea7d6720ec131ede1
Author: Günther Deschner <gd at samba.org>
Date:   Mon Apr 14 18:21:21 2008 +0200

    libgpo: fix build warning.
    
    Thanks metze&vl.
    
    Guenther

-----------------------------------------------------------------------

Summary of changes:
 source/libgpo/gpo_reg.c |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source/libgpo/gpo_reg.c b/source/libgpo/gpo_reg.c
index 06ebdc4..7a005d8 100644
--- a/source/libgpo/gpo_reg.c
+++ b/source/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",


-- 
Samba Shared Repository


More information about the samba-cvs mailing list