diff options
author | Günther Deschner <gd@samba.org> | 2007-08-23 09:39:14 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:30:12 -0500 |
commit | 7a30cb15da15532cea02bab0cdf927a13d785607 (patch) | |
tree | 959350cdadf820032821f24739e604a6be89f53d | |
parent | 92ec897627203cabf11885be24e255776848cff4 (diff) | |
download | samba-7a30cb15da15532cea02bab0cdf927a13d785607.tar.gz samba-7a30cb15da15532cea02bab0cdf927a13d785607.tar.bz2 samba-7a30cb15da15532cea02bab0cdf927a13d785607.zip |
r24632: Fix build warnings.
Guenther
(This used to be commit e9178af01d68b7cbe91157d1d196f2148eeef7ca)
-rw-r--r-- | source3/registry/reg_smbconf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/registry/reg_smbconf.c b/source3/registry/reg_smbconf.c index a809f6b643..ccf78d4350 100644 --- a/source3/registry/reg_smbconf.c +++ b/source3/registry/reg_smbconf.c @@ -121,7 +121,7 @@ static BOOL smbconf_store_values( const char *key, REGVAL_CTR *val ) len = value->v.sz.len; DEBUG(10, ("theval->size: %d, value->v.sz.len: %d, " "value->v.sz.str: '%s'\n", - theval->size, value->v.sz.len, + theval->size, (int)value->v.sz.len, value->v.sz.str)); if (valstr[len - 1] != '\0') { DEBUG(10, ("string is not '\\0'-terminated. " @@ -162,7 +162,7 @@ static BOOL smbconf_store_values( const char *key, REGVAL_CTR *val ) DEBUG(10, ("NEW: value->type: %d, value->v.sz.len: %d, " "value->v.sz.str: '%s'\n", value->type, - value->v.sz.len, value->v.sz.str)); + (int)value->v.sz.len, value->v.sz.str)); err = registry_push_value(mem_ctx, value, &value_data); if (!W_ERROR_IS_OK(err)) { |