diff options
author | Jeremy Allison <jra@samba.org> | 2007-09-13 00:31:02 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:30:42 -0500 |
commit | 6716382ec9aa606ef6975ae24cf699bfc69537e6 (patch) | |
tree | 25a346a5871061f8e1c9c16a8d586faa9cfca84a /source3/lib/charcnv.c | |
parent | ad26e7c4a3355e40d262a26c8cc89b09aee1c776 (diff) | |
download | samba-6716382ec9aa606ef6975ae24cf699bfc69537e6.tar.gz samba-6716382ec9aa606ef6975ae24cf699bfc69537e6.tar.bz2 samba-6716382ec9aa606ef6975ae24cf699bfc69537e6.zip |
r25120: One more warning.
Jeremy.
(This used to be commit 9cc70e3ccff9c3b20076572235d9dcbfd23e97e5)
Diffstat (limited to 'source3/lib/charcnv.c')
-rw-r--r-- | source3/lib/charcnv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/lib/charcnv.c b/source3/lib/charcnv.c index 5e265234e6..4a2e768d05 100644 --- a/source3/lib/charcnv.c +++ b/source3/lib/charcnv.c @@ -1109,7 +1109,7 @@ static size_t pull_ascii_base_talloc(TALLOC_CTX *ctx, char *msg = talloc_asprintf(ctx, "Bad src length (%u) in " "pull_ascii_base_talloc", - src_len); + (unsigned int)src_len); smb_panic(msg); } } |