diff options
author | kientzle <kientzle@FreeBSD.org> | 2007-04-02 00:21:46 +0000 |
---|---|---|
committer | kientzle <kientzle@FreeBSD.org> | 2007-04-02 00:21:46 +0000 |
commit | fce578bdb853a07ca2353a37e315414ecf3b75dc (patch) | |
tree | b3e318c0266b9929c646a177b12289a63a8e652e /lib | |
parent | c25369d5e8a76c5bc6c46b1a3e8da2b802a28f66 (diff) | |
download | FreeBSD-src-fce578bdb853a07ca2353a37e315414ecf3b75dc.zip FreeBSD-src-fce578bdb853a07ca2353a37e315414ecf3b75dc.tar.gz |
Style fix: Use the correct type for 'bytes_to_write'.
Thanks to: Joerg Sonnenberger
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libarchive/archive_read_data_into_fd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libarchive/archive_read_data_into_fd.c b/lib/libarchive/archive_read_data_into_fd.c index 028baf6..cc15a9c 100644 --- a/lib/libarchive/archive_read_data_into_fd.c +++ b/lib/libarchive/archive_read_data_into_fd.c @@ -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; |