X-Git-Url: http://mj.ucw.cz/gitweb/?a=blobdiff_plain;f=lib%2Fpools.h;h=6058c5eefc9549de214660e3df2c7eea22805fb6;hb=1b0a16240bdcc069979452f56fbbf2299625be78;hp=540e8e60cc690bb939d10b700735b295ededa1ca;hpb=12eeb07ec0233349ed421e0804cba7820286a01a;p=libucw.git 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