diff options
| author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2010-10-18 07:18:20 +0000 | 
|---|---|---|
| committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2010-10-18 07:18:20 +0000 | 
| commit | c88c5882d1e10d22a27e4c48ee65bebaa5592e20 (patch) | |
| tree | f3fc4182054055e5e9d62afce6df5d5753a250f8 /os | |
| parent | b7e7258008897b11c6c8bbdc3220a49f3eaed949 (diff) | |
| download | ChibiOS-c88c5882d1e10d22a27e4c48ee65bebaa5592e20.tar.gz ChibiOS-c88c5882d1e10d22a27e4c48ee65bebaa5592e20.tar.bz2 ChibiOS-c88c5882d1e10d22a27e4c48ee65bebaa5592e20.zip  | |
Fixed bug 3089567.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@2267 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os')
| -rw-r--r-- | os/kernel/include/chstreams.h | 2 | ||||
| -rw-r--r-- | os/various/memstreams.h | 2 | 
2 files changed, 2 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.*/                                                  \
  | 
