From: Martin Mares Date: Mon, 10 May 2004 13:13:05 +0000 (+0000) Subject: Oops, this worked only by a chance. X-Git-Tag: holmes-import~1070 X-Git-Url: http://mj.ucw.cz/gitweb/?a=commitdiff_plain;h=fa46b138dbec92d85bb457f1feb7935846596ab6;p=libucw.git Oops, this worked only by a chance. --- diff --git a/lib/pools.h b/lib/pools.h index 540e8e60..6058c5ee 100644 --- a/lib/pools.h +++ b/lib/pools.h @@ -67,7 +67,7 @@ char *mp_multicat(struct mempool *, ...); static inline char * mp_strcat(struct mempool *mp, char *x, char *y) { - mp_multicat(mp, x, y, NULL); + return mp_multicat(mp, x, y, NULL); } #endif