Remove superflous casts and parenthesis.
This commit is contained in:
parent
f883710417
commit
cd73a47dfa
28 changed files with 136 additions and 145 deletions
|
@ -76,7 +76,7 @@ serverio(int s, struct ioqueue *ioq)
|
|||
return 0;
|
||||
}
|
||||
if (n != ioq->bsize)
|
||||
buf = (char *)realloc(buf, n);
|
||||
buf = realloc(buf, n);
|
||||
ioq_write(ioq, buf, n);
|
||||
return 1;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue