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:
rfm 2012-01-26 19:59:58 +00:00
parent 1c6a149a32
commit 7d8312982c
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;