From 8a5729e056177aeac22f543185f50eb6e683982b Mon Sep 17 00:00:00 2001 From: Felix Ruess Date: Mon, 27 Oct 2014 17:46:42 +0100 Subject: [PATCH] [math] fix stupid typo in FLOAT_VECT3_NORMALIZE --- sw/airborne/math/pprz_algebra_float.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sw/airborne/math/pprz_algebra_float.h b/sw/airborne/math/pprz_algebra_float.h index 567d79dadfb..11a1a60318b 100644 --- a/sw/airborne/math/pprz_algebra_float.h +++ b/sw/airborne/math/pprz_algebra_float.h @@ -165,7 +165,7 @@ static inline void float_vect3_normalize(struct FloatVect3* v) } } -#define FLOAT_VECT3_NORMALIZE(_v) float_vect3_norm(&(_v)) +#define FLOAT_VECT3_NORMALIZE(_v) float_vect3_normalize(&(_v))