From cb519b369202407256144a46b20df5bfb6a238ad Mon Sep 17 00:00:00 2001 From: Thomas Schmitt Date: Sun, 3 Jul 2016 18:06:40 +0200 Subject: [PATCH] Reacted on compiler warning of Debian Sid. (By accident the wrong code was equivalent to the correct code.) --- libisofs/fs_image.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libisofs/fs_image.c b/libisofs/fs_image.c index 7f28458..d69e24e 100644 --- a/libisofs/fs_image.c +++ b/libisofs/fs_image.c @@ -3993,7 +3993,7 @@ int iso_analyze_mbr(IsoImage *image, IsoDataSource *src, int flag) } if (sai->mbr_req_count >= 1 && (sai->mbr_req[0]->type_byte == 0xee || !is_isohybrid) && - !sai->prep_part_start > 0) { + !(sai->prep_part_start > 0)) { part = sai->mbr_req[0]; part2_start = 0; if (sai->mbr_req_count >= 2)