]> mj.ucw.cz Git - libucw.git/blobdiff - ucw/mempool.h
Renamed cf_write_item() to cf_modify_item().
[libucw.git] / ucw / mempool.h
index 88d19e7fba320b9decb667d5e9ece9a34adbea01..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 *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);
 }