The branch, master has been updated
       via  2ca48d3740c40be2142ca7e7ad88aabdaa822c06 (commit)
      from  9823b4343d87fc0c45f3c60a49855674fc6ff7c8 (commit)

http://gitweb.samba.org/?p=samba.git;a=shortlog;h=master


- Log -----------------------------------------------------------------
commit 2ca48d3740c40be2142ca7e7ad88aabdaa822c06
Author: Jeremy Allison <[email protected]>
Date:   Thu Feb 19 13:11:36 2009 -0800

    Fix printf type warning.
    Jeremy.

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

Summary of changes:
 source3/registry/reg_backend_db.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source3/registry/reg_backend_db.c 
b/source3/registry/reg_backend_db.c
index fe5f192..8ef83a1 100644
--- a/source3/registry/reg_backend_db.c
+++ b/source3/registry/reg_backend_db.c
@@ -550,8 +550,8 @@ static bool regdb_store_keys_internal(const char *key, 
REGSUBKEY_CTR *ctr)
                                                   (len+thistime)*2);
                        if(buffer == NULL) {
                                DEBUG(0, ("regdb_store_keys: Failed to realloc "
-                                         "memory of size [%d]\n",
-                                         (len+thistime)*2));
+                                         "memory of size [%u]\n",
+                                         (unsigned int)(len+thistime)*2));
                                ret = false;
                                goto done;
                        }


-- 
Samba Shared Repository

Reply via email to