Fix typo in debug statement.
authorTim Potter <tpot@samba.org>
Tue, 4 Nov 2003 19:53:37 +0000 (19:53 +0000)
committerTim Potter <tpot@samba.org>
Tue, 4 Nov 2003 19:53:37 +0000 (19:53 +0000)
source/rpc_server/srv_pipe_hnd.c

index 9297278764d7bd3e9b626efdef109193ac4030ab..57e45d477fef2ce3e0e182abf4ad3b2a519af435 100644 (file)
@@ -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);