Skip to content

Commit

Permalink
Fix #336: hush uninit var false positive
Browse files Browse the repository at this point in the history
  • Loading branch information
terrillmoore committed Jun 12, 2022
1 parent ae4be4b commit 66eceb2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ uint32_t CatenaStm32L0::CalibrateSystemClock(void)
uint32_t CalibLow;
uint32_t CalibHigh;
uint32_t mSecond;
uint32_t mSecondNew;
uint32_t mSecondNew = 0;
uint32_t mSecondLow;
uint32_t mSecondHigh;
bool fHaveSeenLow;
Expand Down

0 comments on commit 66eceb2

Please sign in to comment.