From bb5886094e6b7d203c04a392b084efe47d8bd8c2 Mon Sep 17 00:00:00 2001 From: Thomas Schmitt Date: Sat, 21 May 2011 23:18:00 +0200 Subject: [PATCH] Reacted on -Wextra -Wno-unused-parameter warnings of gcc for rockridge_read.c --- libisofs/rockridge_read.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/libisofs/rockridge_read.c b/libisofs/rockridge_read.c index 495e357..80db25e 100644 --- a/libisofs/rockridge_read.c +++ b/libisofs/rockridge_read.c @@ -81,8 +81,7 @@ int susp_iter_next(SuspIterator *iter, struct susp_sys_user_entry **sue) * (IEEE 1281, SUSP. section 4) */ if (iter->ce_len) { - uint32_t block; - int nblocks; + uint32_t block, nblocks; /* A CE has found, there is another continuation area */ nblocks = DIV_UP(iter->ce_off + iter->ce_len, BLOCK_SIZE);