Fix doc.
authorbatt <batt@38d2e660-2303-0410-9eaa-f027e97ec537>
Wed, 9 Apr 2008 14:35:09 +0000 (14:35 +0000)
committerbatt <batt@38d2e660-2303-0410-9eaa-f027e97ec537>
Wed, 9 Apr 2008 14:35:09 +0000 (14:35 +0000)
git-svn-id: https://src.develer.com/svnoss/bertos/trunk@1220 38d2e660-2303-0410-9eaa-f027e97ec537

bertos/cfg/macros.h

index 1006fc42e6ac9cfee30ce838aeb04a7953933b4f..dda5fe0e635a023bfc1c3cb338b9d65d0a09ff8d 100644 (file)
@@ -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) */