Minor style knit.

This commit is contained in:
pfg 2014-05-29 19:43:43 +00:00
parent 91a569ad69
commit c2026d6193

View File

@ -456,8 +456,7 @@ mknum(char *str, char ch)
len = strlen(str) + 2;
if (len > copy_size) {
newlen = ((len + 1023) >> 10) << 10;
if ((newcopy = realloc(copy, newlen)) == NULL)
{
if ((newcopy = realloc(copy, newlen)) == NULL) {
warnx("%s", strerror(ENOMEM));
return (NULL);
}