From: Michal Vaner Date: Wed, 1 Oct 2008 08:25:39 +0000 (+0200) Subject: Fix compilation after writing docs X-Git-Tag: holmes-import~276 X-Git-Url: http://mj.ucw.cz/gitweb/?a=commitdiff_plain;h=94e66bbd7caa5651c83064d65336ce2dd668eaba;p=libucw.git Fix compilation after writing docs --- diff --git a/ucw/mempool.h b/ucw/mempool.h index 88d19e7f..61a6f3d9 100644 --- a/ucw/mempool.h +++ b/ucw/mempool.h @@ -375,7 +375,7 @@ char *mp_multicat(struct mempool *, ...) LIKE_MALLOC SENTINEL_CHECK; /** * Concatenates two strings and stores result on @mp. */ -static inline char *mp_strcat(struct mempool *mp, const char *x, const char *y) LIKE_MALLOC +static inline char LIKE_MALLOC *mp_strcat(struct mempool *mp, const char *x, const char *y) { return mp_multicat(mp, x, y, NULL); }