From 9953452d498f89152147f4408e7c1959ab2cc97b Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Sun, 17 Jul 2005 10:38:59 +0000 Subject: r8522: fixed another couple of size_t warnings (This used to be commit d2c928548336682ffd3dda873f9957f3d041f0af) --- source4/librpc/ndr/ndr_spoolss_buf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source4/librpc/ndr') 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;\ -- cgit