fix copying large files

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@34637 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-MacDonald 2012-01-26 19:59:58 +00:00
parent 598c5de32a
commit 0332d78990
2 changed files with 6 additions and 2 deletions

View file

@ -2655,11 +2655,11 @@ static inline void gsedRelease(GSEnumeratedDirectory X)
#else
NSDictionary *attributes;
int i;
unsigned long long fileSize;
unsigned long long i;
int bufsize = 8096;
int sourceFd;
int destFd;
int fileSize;
int fileMode;
int rbytes;
int wbytes;