Rename myself
[bertos.git] / bertos / cfg / macros.h
index 1006fc42e6ac9cfee30ce838aeb04a7953933b4f..638118b54f4bdff3b8490a57108d9db5941ccfb5 100644 (file)
@@ -33,7 +33,7 @@
  * \brief Common and handy function macros
  *
  * \version $Id$
- * \author Bernardo Innocenti <bernie@develer.com>
+ * \author Bernie Innocenti <bernie@codewiz.org>
  * \author Giovanni Bajo <rasky@develer.com>
  */
 #ifndef CFG_MACROS_H
@@ -68,8 +68,8 @@
                 * were mixed in an expression. \
                 * Even in _a and _b are of the same type, \
                 * if mixed in an expression the type will be \
-                * promoted to int! \
-               */ \
+                * (at least) promoted to int! \
+                */ \
                ((typeof(_a))((_a < _b) ? _a : _b)); \
        })
        #define MAX(a,b) ({ \
@@ -84,8 +84,8 @@
                 * were mixed in an expression. \
                 * Even in _a and _b are of the same type, \
                 * if mixed in an expression the type will be \
-                * promoted to int! \
-               */ \
+                * (at least) promoted to int! \
+                */ \
                ((typeof(_a))((_a > _b) ? _a : _b)); \
        })
 #else /* !(COMPILER_STATEMENT_EXPRESSIONS && COMPILER_TYPEOF) */