From f7ec97e862db973de0afa05ab109a7af83f4392d Mon Sep 17 00:00:00 2001 From: OBattler Date: Thu, 13 Sep 2018 05:33:45 +0200 Subject: [PATCH] Changed one local variable in a function in disk/zip.c to 32-bit. --- src/disk/zip.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/disk/zip.c b/src/disk/zip.c index e5827f2c8..f2ec8497f 100644 --- a/src/disk/zip.c +++ b/src/disk/zip.c @@ -9,7 +9,7 @@ * Implementation of the Iomega ZIP drive with SCSI(-like) * commands, for both ATAPI and SCSI usage. * - * Version: @(#)zip.c 1.0.22 2018/09/12 + * Version: @(#)zip.c 1.0.23 2018/09/13 * * Author: Miran Grca, * @@ -2164,7 +2164,7 @@ zip_phase_data_out(zip_t *dev) uint8_t error = 0; uint8_t page, page_len; - uint16_t i = 0; + uint32_t i = 0; uint8_t hdr_len, val, old_val, ch;