The branch, v3-3-test has been updated
       via  aaba9a7b9a39bd899a748c45502fb8103c863eb9 (commit)
      from  d98c43982c56ef788144a3fd67cdd65a9f95f2be (commit)

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


- Log -----------------------------------------------------------------
commit aaba9a7b9a39bd899a748c45502fb8103c863eb9
Author: Jeremy Allison <[email protected]>
Date:   Thu Feb 19 13:09:45 2009 -0800

    Fix printf type warning.
    Jeremy.

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

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


Changeset truncated at 500 lines:

diff --git a/source/registry/reg_backend_db.c b/source/registry/reg_backend_db.c
index fe5f192..8ef83a1 100644
--- a/source/registry/reg_backend_db.c
+++ b/source/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