From: Pierre-Marc Fournier Date: Tue, 23 Feb 2010 23:43:16 +0000 (-0500) Subject: libmallocwrap: give a name to the free event argument X-Git-Tag: v0.3~33 X-Git-Url: https://git.lttng.org/?p=ust.git;a=commitdiff_plain;h=c08873445e68e10e1b23aa787c80a394eea73eb6 libmallocwrap: give a name to the free event argument --- diff --git a/libmallocwrap/mallocwrap.c b/libmallocwrap/mallocwrap.c index be1f39e..f5d5ce3 100644 --- a/libmallocwrap/mallocwrap.c +++ b/libmallocwrap/mallocwrap.c @@ -92,7 +92,7 @@ void free(void *ptr) } } - trace_mark(ust, free, "%p", ptr); + trace_mark(ust, free, "ptr %p", ptr); plibc_free(ptr); }