diff options
Diffstat (limited to 'archival/tar.c')
-rw-r--r-- | archival/tar.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/archival/tar.c b/archival/tar.c index b2ae3b2af..28bb14776 100644 --- a/archival/tar.c +++ b/archival/tar.c | |||
@@ -376,7 +376,7 @@ static int writeFileToTarball(const char *fileName, struct stat *statbuf, | |||
376 | 376 | ||
377 | /* If it was a regular file, write out the body */ | 377 | /* If it was a regular file, write out the body */ |
378 | if (inputFileFd >= 0) { | 378 | if (inputFileFd >= 0) { |
379 | ssize_t readSize = 0; | 379 | off_t readSize = 0; |
380 | 380 | ||
381 | /* write the file to the archive */ | 381 | /* write the file to the archive */ |
382 | readSize = bb_copyfd_eof(inputFileFd, tbInfo->tarFd); | 382 | readSize = bb_copyfd_eof(inputFileFd, tbInfo->tarFd); |