Fix code style mismatch.

This commit is contained in:
Alcaro 2016-01-21 01:28:32 +01:00
parent 1229ee0f1b
commit 0d77ac3977
1 changed files with 43 additions and 43 deletions

View File

@ -87,7 +87,7 @@ char *string_replace_substring(const char *in, const char *pattern, const char *
}
outlen = strlen(in) - pattern_len*numhits + replacement_len*numhits;
out = malloc(outlen+1);
out = (char *)malloc(outlen+1);
outat = out;
inat = in;