cleanup: Fix more spourious missing return warnings
Rewrite to use a temporary and get rid of the warning. The generated asm is *unchanged*.
This commit is contained in:
parent
992845198d
commit
5ed6bd7f8b
|
|
@ -466,7 +466,9 @@ void PAT9125_sensor::settings_init() {
|
|||
}
|
||||
|
||||
int16_t PAT9125_sensor::getStepCount() {
|
||||
ATOMIC_BLOCK(ATOMIC_RESTORESTATE) { return stepCount; }
|
||||
int16_t ret;
|
||||
ATOMIC_BLOCK(ATOMIC_RESTORESTATE) { ret = stepCount; }
|
||||
return ret;
|
||||
}
|
||||
|
||||
void PAT9125_sensor::resetStepCount() {
|
||||
|
|
|
|||
Loading…
Reference in New Issue