avoid reassignment
Signed-off-by: Rosen Penev <rosenp@gmail.com>
This commit is contained in:
parent
dd3b3d4ff4
commit
d6e1b90a23
@ -239,9 +239,10 @@ uint64_t BmffImage::boxHandler(std::ostream& out /* = std::cout*/, Exiv2::PrintS
|
||||
}
|
||||
visits_.insert(address);
|
||||
|
||||
bool bTrace = option == kpsBasic || option == kpsRecursive;
|
||||
#ifdef EXIV2_DEBUG_MESSAGES
|
||||
bTrace = true;
|
||||
bool bTrace = true;
|
||||
#else
|
||||
bool bTrace = option == kpsBasic || option == kpsRecursive;
|
||||
#endif
|
||||
|
||||
// 8-byte buffer for parsing the box length and type.
|
||||
|
||||
Loading…
Reference in New Issue
Block a user