conffile: add explicit cast in get_string_arg().

Michael
This commit is contained in:
Michael Adam 2009-08-04 15:30:30 +02:00
parent 35abbbc26d
commit 23b09947c6

View File

@ -323,7 +323,7 @@ get_string_arg (const char *line, regmatch_t * match)
assert (line);
assert (len > 0);
p = safemalloc (len + 1);
p = (char *)safemalloc (len + 1);
if (!p)
return NULL;