mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Add a missing break after OSTC3 settings write
There was a missing break after writing the settings to the OSTC3. It caused us to fall down into the default case and saying that the operation was unsupported. Signed-off-by: Anton Lundin <glance@acc.umu.se> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
d025d5bbb6
commit
556474e4dd
1 changed files with 1 additions and 0 deletions
|
@ -684,6 +684,7 @@ void WriteSettingsThread::run()
|
||||||
time.second = timeToSet.time().second();
|
time.second = timeToSet.time().second();
|
||||||
hw_ostc3_device_clock(m_data->device, &time);
|
hw_ostc3_device_clock(m_data->device, &time);
|
||||||
}
|
}
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
#endif // divecomputer 0.5.0
|
#endif // divecomputer 0.5.0
|
||||||
default:
|
default:
|
||||||
|
|
Loading…
Add table
Reference in a new issue