From 0eaac99d74dc0b66bfa714f6a90d10e59e0be8b6 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Sun, 12 Nov 2017 17:48:11 -0500 Subject: [PATCH] Avoids implicit signed/unsigned comparison in the G64 reader. --- Storage/Disk/DiskImage/Formats/G64.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Storage/Disk/DiskImage/Formats/G64.cpp b/Storage/Disk/DiskImage/Formats/G64.cpp index 2421a6d05..ade35d6b9 100644 --- a/Storage/Disk/DiskImage/Formats/G64.cpp +++ b/Storage/Disk/DiskImage/Formats/G64.cpp @@ -89,7 +89,7 @@ std::shared_ptr G64::get_track_at_position(Track::Address address) { unsigned int start_byte_in_current_speed = 0; for(unsigned int byte = 0; byte < track_length; byte ++) { unsigned int byte_speed = speed_zone_contents[byte >> 2] >> (6 - (byte&3)*2); - if(byte_speed != current_speed || byte == (track_length-1)) { + if(byte_speed != current_speed || byte == static_cast(track_length-1)) { unsigned int number_of_bytes = byte - start_byte_in_current_speed; PCMSegment segment;