Skip to content

Commit

Permalink
Fixes after sanity checks
Browse files Browse the repository at this point in the history
  • Loading branch information
foldynl committed Mar 24, 2024
1 parent e5de1d0 commit 2a84503
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion rig/drivers/OmnirigDrv.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -526,7 +526,7 @@ bool OmnirigDrv::checkFreqChange(int params, bool force)
return false;
}

unsigned int vfo_freq;
unsigned int vfo_freq = 0;
if ( rigProfile.getFreqInfo
&& ( params & OmniRig::PM_FREQA
|| params & OmniRig::PM_FREQB
Expand Down
2 changes: 1 addition & 1 deletion rig/drivers/Omnirigv2Drv.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -535,7 +535,7 @@ bool OmnirigV2Drv::checkFreqChange(int params, bool force)
return false;
}

unsigned int vfo_freq;
unsigned int vfo_freq = 0;
if ( rigProfile.getFreqInfo
&& ( params & OmniRigV2::PM_FREQA
|| params & OmniRigV2::PM_FREQB
Expand Down

0 comments on commit 2a84503

Please sign in to comment.