diff --git a/src/shared/sensors/analog/pressure/AnalogPressureSensor.h b/src/shared/sensors/analog/pressure/AnalogPressureSensor.h
index 50c8edee2079620fcd030fbb8e2c232a51f37ca8..0c0a573a7d407188c9d9580cb2f330ae55184949 100644
--- a/src/shared/sensors/analog/pressure/AnalogPressureSensor.h
+++ b/src/shared/sensors/analog/pressure/AnalogPressureSensor.h
@@ -49,9 +49,9 @@ public:
}
AnalogPressureSensor(AnalogPressureSensor&& other)
- : getVoltage{std::move(other.getVoltage)}, offset{other.offset},
- supplyVoltage{other.supplyVoltage}, maxPressure{other.maxPressure},
- minPressure{other.minPressure}, offsetMutex{}
+ : getVoltage{std::move(other.getVoltage)}, offsetMutex{},
+ offset{other.offset}, supplyVoltage{other.supplyVoltage},
+ maxPressure{other.maxPressure}, minPressure{other.minPressure}
{
}