diff --git a/src/libs/resiprocate/rutil/compat.hxx b/src/libs/resiprocate/rutil/compat.hxx index 8d7abfac..d0cbcde0 100644 --- a/src/libs/resiprocate/rutil/compat.hxx +++ b/src/libs/resiprocate/rutil/compat.hxx @@ -121,14 +121,18 @@ template inline const _Tp& resipMin(const _Tp& __a, const _Tp& __b) { - if (__b < __a) return __b; return __a; + if (__b < __a) + return __b; + return __a; } template inline const _Tp& resipMax(const _Tp& __a, const _Tp& __b) { - if (__a < __b) return __b; return __a; + if (__a < __b) + return __b; + return __a; } template