Fix build after r326554; reconnect sponge to build again.
This commit is contained in:
parent
65547fb33d
commit
ca94a1c6ca
@ -148,6 +148,7 @@ SUBDIR= alias \
|
|||||||
soelim \
|
soelim \
|
||||||
sort \
|
sort \
|
||||||
split \
|
split \
|
||||||
|
sponge \
|
||||||
stat \
|
stat \
|
||||||
stdbuf \
|
stdbuf \
|
||||||
strings \
|
strings \
|
||||||
|
@ -172,7 +172,8 @@ main(int argc, char* argv[])
|
|||||||
bufremain = bufcnt;
|
bufremain = bufcnt;
|
||||||
|
|
||||||
while (bufremain > 0) {
|
while (bufremain > 0) {
|
||||||
whichbuf = (bufremain < maxiovec) ? bufremain : maxiovec;
|
whichbuf = bufremain < (unsigned long) maxiovec
|
||||||
|
? bufremain : maxiovec;
|
||||||
bufremain -= whichbuf;
|
bufremain -= whichbuf;
|
||||||
|
|
||||||
i = writev(fd, iov, whichbuf);
|
i = writev(fd, iov, whichbuf);
|
||||||
|
Loading…
Reference in New Issue
Block a user