diff options
author | Andrew Tridgell <tridge@samba.org> | 2005-07-17 10:38:59 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:29:34 -0500 |
commit | 9953452d498f89152147f4408e7c1959ab2cc97b (patch) | |
tree | 528e4b68c7f9cc9c2eda04f9f8047d9b424acb7b /source4/librpc/ndr | |
parent | e835621799647ee70630b389fb53d15b15d68355 (diff) | |
download | samba-9953452d498f89152147f4408e7c1959ab2cc97b.tar.gz samba-9953452d498f89152147f4408e7c1959ab2cc97b.tar.bz2 samba-9953452d498f89152147f4408e7c1959ab2cc97b.zip |
r8522: fixed another couple of size_t warnings
(This used to be commit d2c928548336682ffd3dda873f9957f3d041f0af)
Diffstat (limited to 'source4/librpc/ndr')
-rw-r--r-- | source4/librpc/ndr/ndr_spoolss_buf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/librpc/ndr/ndr_spoolss_buf.c b/source4/librpc/ndr/ndr_spoolss_buf.c index 2238a916a4..f599e04c86 100644 --- a/source4/librpc/ndr/ndr_spoolss_buf.c +++ b/source4/librpc/ndr/ndr_spoolss_buf.c @@ -127,7 +127,7 @@ if (r->in.offered != _ndr_info->data_size) {\ return ndr_pull_error(ndr, NDR_ERR_BUFSIZE,\ "SPOOLSS Buffer: offered[%u] doesn't match length of buffer[%u]",\ - r->in.offered, _ndr_info->data_size);\ + r->in.offered, (unsigned)_ndr_info->data_size);\ }\ if (r->out.needed <= _ndr_info->data_size) {\ struct __##fn __r;\ |