Merge pull request #1832 from rubenk/check-for-c99-compiler
[collectd.git] / src / daemon / utils_subst.c
index cfa1c76..1bc28f7 100644 (file)
@@ -29,6 +29,7 @@
  */
 
 #include "collectd.h"
+
 #include "common.h"
 #include "utils_subst.h"
 
@@ -102,7 +103,7 @@ char *asubst (const char *string, int off1, int off2, const char *replacement)
 
        len = off1 + strlen (replacement) + strlen (string) - off2 + 1;
 
-       buf = (char *)malloc (len);
+       buf = malloc (len);
        if (NULL == buf)
                return NULL;