From 255b6edca8a77efbf0135553240655a2acf2a581 Mon Sep 17 00:00:00 2001 From: Daniel Scharrer Date: Thu, 29 Aug 2019 23:32:26 +0200 Subject: [PATCH] exefilter: Avoid shadowing --- src/stream/exefilter.hpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/stream/exefilter.hpp b/src/stream/exefilter.hpp index aede2f6..5ae1454 100644 --- a/src/stream/exefilter.hpp +++ b/src/stream/exefilter.hpp @@ -93,11 +93,11 @@ public: typedef base_type::category category; /*! - * \param flip_high_byte true if the high byte of addresses is flipped if bit 23 is set. - * This optimization is used in Inno Setup 5.3.9 and later. + * \param flip_high_bytes true if the high byte of addresses is flipped if bit 23 is set. + * This optimization is used in Inno Setup 5.3.9 and later. */ - explicit inno_exe_decoder_5200(bool flip_high_byte) - : flip_high_byte(flip_high_byte) { close(0); } + explicit inno_exe_decoder_5200(bool flip_high_bytes) + : flip_high_byte(flip_high_bytes) { close(0); } template std::streamsize read(Source & src, char * dest, std::streamsize n);