diff --git a/src/shared/sensors/analog/Pitot/Pitot.h b/src/shared/sensors/analog/Pitot/Pitot.h
index 9f5574123f0a38de9adc4e55246d46a08367ffbd..19838342b60cdb531b706d2be92f7beb2d9f161c 100644
--- a/src/shared/sensors/analog/Pitot/Pitot.h
+++ b/src/shared/sensors/analog/Pitot/Pitot.h
@@ -68,7 +68,7 @@ protected:
         {
             // NOTE: Here we assume that we are always at refTemperature, so
             // calculations might be wrong at higher elevations!
-            pitotSpeed.airspeed = AeroUtils::computePitotAirspeed(
+            pitotSpeed.airspeed = Aeroutils::computePitotAirspeed(
                 totalPressure, staticPressure, 0, reference.refTemperature);
             pitotSpeed.deltaP = totalPressure - staticPressure;
         }