]> mj.ucw.cz Git - libucw.git/blobdiff - ucw/mempool.h
Fix the fix of compilation
[libucw.git] / ucw / mempool.h
index 61a6f3d9ac146c1a77ec825df30b8895ecf77ab6..63b4793791e1a2ae67e0e5da344676ffffcffe79 100644 (file)
@@ -375,7 +375,7 @@ char *mp_multicat(struct mempool *, ...) LIKE_MALLOC SENTINEL_CHECK;
 /**
  * Concatenates two strings and stores result on @mp.
  */
-static inline char LIKE_MALLOC *mp_strcat(struct mempool *mp, const char *x, const char *y)
+static inline char *LIKE_MALLOC mp_strcat(struct mempool *mp, const char *x, const char *y)
 {
   return mp_multicat(mp, x, y, NULL);
 }