diff options
-rw-r--r-- | os/various/chprintf.h | 2 | ||||
-rw-r--r-- | readme.txt | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/os/various/chprintf.h b/os/various/chprintf.h index 591f98130..3444f216f 100644 --- a/os/various/chprintf.h +++ b/os/various/chprintf.h @@ -66,7 +66,7 @@ extern "C" { *
* @api
*/
-static inline void chprintf(BaseSequentialStream *chp, const char *fmt, ...) {
+static INLINE void chprintf(BaseSequentialStream *chp, const char *fmt, ...) {
va_list ap;
va_start(ap, fmt);
diff --git a/readme.txt b/readme.txt index b8a6f36fc..04a9a1340 100644 --- a/readme.txt +++ b/readme.txt @@ -89,6 +89,8 @@ *****************************************************************************
*** 2.7.0 ***
+- FIX: Fixed chprintf() does not compile in strict C90 mode (bug #453)
+ (backported to 2.6.3).
- FIX: Fixed wrong vector names for STM32Lxx (bug #451)(backported
to 2.4.6 and 2.6.2).
- FIX: Fixed wrong STM32_TIM_CCMR2_OCxM macros on STM32F30x (bug #449)
|