summaryrefslogtreecommitdiff
path: root/source3/rpc_server
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2003-11-04 19:53:37 +0000
committerTim Potter <tpot@samba.org>2003-11-04 19:53:37 +0000
commitcedc6341183fe6f0a64fc694e4475efa6c2c528e (patch)
tree95b66211290dad7e588e2356a7b9a6b67f2080e3 /source3/rpc_server
parentf95e40197f7d1f882796de9ed83e61d79b21f256 (diff)
downloadsamba-cedc6341183fe6f0a64fc694e4475efa6c2c528e.tar.gz
samba-cedc6341183fe6f0a64fc694e4475efa6c2c528e.tar.bz2
samba-cedc6341183fe6f0a64fc694e4475efa6c2c528e.zip
Fix typo in debug statement.
(This used to be commit 66e5043553939be2b124bec8581f08b01fdf9c1e)
Diffstat (limited to 'source3/rpc_server')
-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 9297278764..57e45d477f 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 %lu\n", talloc_pool_size((unsigned long)p->mem_ctx) ));
+ DEBUG(3,("free_pipe_context: destroying talloc pool of size %lu\n", (unsigned long)talloc_pool_size(p->mem_ctx) ));
talloc_destroy_pool(p->mem_ctx);
} else {
p->mem_ctx = talloc_init("pipe %s %p", p->name, p);