From: Pavel Charvat Date: Tue, 20 May 2014 13:26:06 +0000 (+0200) Subject: Mempool: Fixed broken unit test. X-Git-Tag: v6.0~32 X-Git-Url: http://mj.ucw.cz/gitweb/?a=commitdiff_plain;h=200f341137e78ef3db7f29726651f35afbccbb0f;p=libucw.git Mempool: Fixed broken unit test. --- 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; }