summaryrefslogtreecommitdiffstats
path: root/m_config.c
diff options
context:
space:
mode:
Diffstat (limited to 'm_config.c')
-rw-r--r--m_config.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/m_config.c b/m_config.c
index d1cb0e0485..feab9537e6 100644
--- a/m_config.c
+++ b/m_config.c
@@ -199,7 +199,7 @@ m_config_add_option(m_config_t *config, m_option_t *arg, char* prefix) {
// Fill in the full name
if(prefix && strlen(prefix) > 0) {
int l = strlen(prefix) + 1 + strlen(arg->name) + 1;
- co->name = (char*) malloc(l);
+ co->name = malloc(l);
sprintf(co->name,"%s:%s",prefix,arg->name);
} else
co->name = arg->name;