diff --git a/src/shared/sensors/analog/TwoPointAnalogLoadCell.h b/src/shared/sensors/analog/TwoPointAnalogLoadCell.h
index 1fdeda5b4d5d47c4138baaf9ff35b1b01fdda040..ff4ec8d987509f293acda5b3f434f316a22e5d43 100644
--- a/src/shared/sensors/analog/TwoPointAnalogLoadCell.h
+++ b/src/shared/sensors/analog/TwoPointAnalogLoadCell.h
@@ -54,9 +54,9 @@ public:
     }
 
     TwoPointAnalogLoadCell(TwoPointAnalogLoadCell&& other)
-        : getVoltage{std::move(other.getVoltage)},
+        : getVoltage{std::move(other.getVoltage)}, offsetMutex{},
           dynamicOffset{other.dynamicOffset}, staticScale{other.staticScale},
-          staticOffset{other.staticOffset}, offsetMutex{}
+          staticOffset{other.staticOffset}
     {
     }