sizeof(char) is always 1, no need to be explicit

This commit is contained in:
sin 2016-01-06 15:24:35 +00:00
parent a715201255
commit e27af6f1db
1 changed files with 2 additions and 2 deletions

View File

@ -235,8 +235,8 @@ setfilter(regex_t *regex, char *filter)
r = regcomp(regex, filter, REG_NOSUB | REG_EXTENDED | REG_ICASE);
if (r != 0) {
errbuf = xmalloc(COLS * sizeof(char));
regerror(r, regex, errbuf, COLS * sizeof(char));
errbuf = xmalloc(COLS);
regerror(r, regex, errbuf, COLS);
printmsg(errbuf);
free(errbuf);
}