From a4c1e04820e121e532cfd2d47f5e47517f10b361 Mon Sep 17 00:00:00 2001 From: Thomas Schmitt Date: Sun, 11 Oct 2015 09:49:15 +0200 Subject: [PATCH] Removed assignment of an unused function result. Coverity CID 12594. --- libisofs/fs_image.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libisofs/fs_image.c b/libisofs/fs_image.c index a09357a..4b0012e 100644 --- a/libisofs/fs_image.c +++ b/libisofs/fs_image.c @@ -2688,8 +2688,8 @@ int read_el_torito_boot_catalog(_ImageFsData *data, uint32_t block) /* >>> ts B10703 : need to continue rather than abort */; - ret = iso_msg_submit(data->msgid, ISO_EL_TORITO_WARN, 0, - "Too many boot images found. List truncated."); + iso_msg_submit(data->msgid, ISO_EL_TORITO_WARN, 0, + "Too many boot images found. List truncated."); goto after_bootblocks; } /* Read bootblock from section entry */