diff --git a/src/fan.rs b/src/fan.rs index 36c9e008..c0fca10b 100644 --- a/src/fan.rs +++ b/src/fan.rs @@ -219,6 +219,7 @@ pub struct FanCurve { impl FanCurve { /// Adds a point to the fan curve + #[must_use] pub fn append(mut self, temp: i16, duty: u16) -> Self { self.points.push(FanPoint::new(temp, duty)); self