Skip to content

Commit 33f5b58

Browse files
committed
Fix typo in instance variable.
The variable in question does not exist, but there is an instance variable with underscore... Signed-off-by: Henner Zeller <[email protected]>
1 parent 9a0d0c7 commit 33f5b58

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/rcx/include/rcx/extProgressTracker.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ class ExtProgressTracker
7878
bool shouldPrintProgress(float currentPercent) const
7979
{
8080
return enabled_ && extractedWireCount_ > 0
81-
&& extractedWireCount_ % wire_extracted_progress_count == 0
81+
&& extractedWireCount_ % wire_extracted_progress_count_ == 0
8282
&& (currentPercent - previousProgressPercent_ >= progressInterval_);
8383
}
8484

0 commit comments

Comments
 (0)