summaryrefslogtreecommitdiff
path: root/source3/rpc_server/srv_pipe_hnd.c
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2003-11-03 14:34:25 +0000
committerTim Potter <tpot@samba.org>2003-11-03 14:34:25 +0000
commitfbb8f131c2336e921677f41e9fb8bce7406f3336 (patch)
treed7af30424bebfbcbc6cf0d891bbd04c5deb74855 /source3/rpc_server/srv_pipe_hnd.c
parent490dbaec81007a9b5dd3aabfc188bdb397927e78 (diff)
downloadsamba-fbb8f131c2336e921677f41e9fb8bce7406f3336.tar.gz
samba-fbb8f131c2336e921677f41e9fb8bce7406f3336.tar.bz2
samba-fbb8f131c2336e921677f41e9fb8bce7406f3336.zip
Fix more 64-bit printf warnings.
(This used to be commit 23443e3aa079710221557e18158d0ddb8ff48a36)
Diffstat (limited to 'source3/rpc_server/srv_pipe_hnd.c')
-rw-r--r--source3/rpc_server/srv_pipe_hnd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/rpc_server/srv_pipe_hnd.c b/source3/rpc_server/srv_pipe_hnd.c
index 55def97673..9297278764 100644
--- a/source3/rpc_server/srv_pipe_hnd.c
+++ b/source3/rpc_server/srv_pipe_hnd.c
@@ -541,7 +541,7 @@ static ssize_t unmarshall_rpc_header(pipes_struct *p)
void free_pipe_context(pipes_struct *p)
{
if (p->mem_ctx) {
- DEBUG(3,("free_pipe_context: destroying talloc pool of size %u\n", talloc_pool_size(p->mem_ctx) ));
+ DEBUG(3,("free_pipe_context: destroying talloc pool of size %lu\n", talloc_pool_size((unsigned long)p->mem_ctx) ));
talloc_destroy_pool(p->mem_ctx);
} else {
p->mem_ctx = talloc_init("pipe %s %p", p->name, p);