From: wessels <> Date: Tue, 12 Nov 1996 05:00:45 +0000 (+0000) Subject: printf X-Git-Tag: SQUID_3_0_PRE1~5487 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=44e323ccbb16a0bec0f35b7aeb0fc21034171104;p=thirdparty%2Fsquid.git printf --- diff --git a/src/comm.cc b/src/comm.cc index c355a3b104..eaec199217 100644 --- a/src/comm.cc +++ b/src/comm.cc @@ -1,6 +1,6 @@ /* - * $Id: comm.cc,v 1.100 1996/11/06 23:14:24 wessels Exp $ + * $Id: comm.cc,v 1.101 1996/11/11 22:00:45 wessels Exp $ * * DEBUG: section 5 Socket Functions * AUTHOR: Harvest Derived @@ -865,7 +865,7 @@ comm_add_close_handler(int fd, PF handler, void *data) { struct close_handler *new = xmalloc(sizeof(*new)); - debug(5, 5, "comm_add_close_handler: fd=%d handler=0x%p data=0x%p\n", fd, handler, data); + debug(5, 5, "comm_add_close_handler: fd=%d handler=%p data=%p\n", fd, handler, data); new->handler = handler; new->data = data;