From 200f341137e78ef3db7f29726651f35afbccbb0f Mon Sep 17 00:00:00 2001 From: Pavel Charvat Date: Tue, 20 May 2014 15:26:06 +0200 Subject: [PATCH] Mempool: Fixed broken unit test. --- ucw/mempool-fmt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ucw/mempool-fmt.c b/ucw/mempool-fmt.c index dbda703d..90273af2 100644 --- a/ucw/mempool-fmt.c +++ b/ucw/mempool-fmt.c @@ -91,7 +91,7 @@ int main(void) fputs(x, stdout); x = mp_append_printf(mp, x, ""); fputs(x, stdout); - x = mp_append_printf(mp, "\n", "World"); + x = mp_printf(mp, "\n", "World"); fputs(x, stdout); return 0; } -- 2.39.2