Merge pull request #54 from argilo/fix-conversion-warning

Fix a narrowing conversion warning.
This commit is contained in:
Jared Boone 2015-08-15 15:35:52 -07:00
commit d7c5da73f4

View File

@ -121,7 +121,7 @@ SetFrequencyCorrectionView::SetFrequencyCorrectionView(
} });
SetFrequencyCorrectionModel model {
portapack::persistent_memory::correction_ppb() / 1000
(int8_t) (portapack::persistent_memory::correction_ppb() / 1000)
};
form_init(model);