diff options
Diffstat (limited to 'Utilities/cmtar/append.c')
-rw-r--r-- | Utilities/cmtar/append.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Utilities/cmtar/append.c b/Utilities/cmtar/append.c index cc845ab..7cee558 100644 --- a/Utilities/cmtar/append.c +++ b/Utilities/cmtar/append.c @@ -217,7 +217,7 @@ tar_append_file(TAR *t, char *realname, char *savename) int tar_append_eof(TAR *t) { - int i, j; + ssize_t i, j; char block[T_BLOCKSIZE]; memset(&block, 0, T_BLOCKSIZE); @@ -242,7 +242,7 @@ tar_append_regfile(TAR *t, char *realname) { char block[T_BLOCKSIZE]; int filefd; - int i, j; + ssize_t i, j; size_t size; #if defined( _WIN32 ) || defined(__CYGWIN__) @@ -278,7 +278,7 @@ tar_append_regfile(TAR *t, char *realname) if (i > 0) { - j = read(filefd, &block, i); + j = (size_t)read(filefd, &block, (unsigned int)i); if (j == -1) return -1; memset(&(block[i]), 0, T_BLOCKSIZE - i); |