Make count a size_t as that is what is compared against and how it is used.

This commit is contained in:
David E. O'Brien 2003-05-02 06:36:52 +00:00
parent e65ab0f83f
commit 4fe0d77843
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=114509

View File

@ -502,7 +502,8 @@ sink(int argc, char *argv[])
enum { YES, NO, DISPLAYED } wrerr;
BUF *bp;
off_t i, j, size;
int amt, count, exists, first, mask, mode, ofd, omode;
int amt, exists, first, mask, mode, ofd, omode;
size_t count;
int setimes, targisdir, wrerrno = 0;
char ch, *cp, *np, *targ, *why, *vect[1], buf[BUFSIZ], path[PATH_MAX];