Style fix: Use the correct type for 'bytes_to_write'.

Thanks to: Joerg Sonnenberger
This commit is contained in:
Tim Kientzle 2007-04-02 00:21:46 +00:00
parent b94f39cecc
commit 25d4e0e5ab
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=168232

View file

@ -50,8 +50,8 @@ archive_read_data_into_fd(struct archive *a, int fd)
{
int r;
const void *buff;
size_t size;
ssize_t bytes_to_write, bytes_written, total_written;
size_t size, bytes_to_write;
ssize_t bytes_written, total_written;
off_t offset;
off_t output_offset;