diff options
-rw-r--r-- | os/kernel/include/chstreams.h | 2 | ||||
-rw-r--r-- | os/various/memstreams.h | 2 | ||||
-rw-r--r-- | readme.txt | 1 |
3 files changed, 3 insertions, 2 deletions
diff --git a/os/kernel/include/chstreams.h b/os/kernel/include/chstreams.h index 039f0dbd6..7d85aa186 100644 --- a/os/kernel/include/chstreams.h +++ b/os/kernel/include/chstreams.h @@ -41,7 +41,7 @@ /**
* @brief BaseSequentialStream specific methods.
*/
-#define _base_sequential_stream_methods \
+#define _base_sequential_stream_methods \
/* Stream write buffer method.*/ \
size_t (*write)(void *instance, const uint8_t *bp, size_t n); \
/* Stream read buffer method.*/ \
diff --git a/os/various/memstreams.h b/os/various/memstreams.h index 81b7127a7..e216e4e8f 100644 --- a/os/various/memstreams.h +++ b/os/various/memstreams.h @@ -32,7 +32,7 @@ * @brief @p RamStream specific data.
*/
#define _memory_stream_data \
- _base_sequental_stream_data \
+ _base_sequential_stream_data \
/* Pointer to the stream buffer.*/ \
uint8_t *buffer; \
/* Size of the stream.*/ \
diff --git a/readme.txt b/readme.txt index cb59ba980..a4b750d84 100644 --- a/readme.txt +++ b/readme.txt @@ -63,6 +63,7 @@ *****************************************************************************
*** 2.1.2 ***
+- FIX: Fixed typo in memstreams.h (bug 3089567)(backported to 2.0.6).
- FIX: Fixed wrong macro check in LPC214x and AT91SAM7 serial drivers (bug
3088776)(backported to 2.0.6).
- FIX: Fixed non functioning option SPI_USE_MUTUAL_EXCLUSION=FALSE (bug
|