From 462a346bf66e2b1d24ce4bc4799a8a728823f465 Mon Sep 17 00:00:00 2001 From: Victor Julien Date: Fri, 7 Aug 2009 00:46:09 +0200 Subject: [PATCH] Fix printf formatting error in a pool unittest. --- src/util-pool.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util-pool.c b/src/util-pool.c index 2f17c57b92..4721e5841b 100644 --- a/src/util-pool.c +++ b/src/util-pool.c @@ -357,7 +357,7 @@ static int PoolTestInit06 (void) { data = PoolGet(p); if (data != NULL) { - printf("PoolGet returned %p, expected NULL: "); + printf("PoolGet returned %p, expected NULL: ", data); retval = 0; goto end; }