From 706eeee50b87dc2a772c1c96e476656d522b09c8 Mon Sep 17 00:00:00 2001 From: gdisirio Date: Mon, 18 Oct 2010 17:51:42 +0000 Subject: [PATCH] Fixed bug 3089567. git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/stable_2.0.x@2269 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- os/various/memstreams.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/os/various/memstreams.h b/os/various/memstreams.h index 31d49c82d..5e5c45125 100644 --- a/os/various/memstreams.h +++ b/os/various/memstreams.h @@ -39,7 +39,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.*/ \ @@ -53,7 +53,7 @@ * @brief @p MemStream virtual methods table. */ struct MemStreamVMT { - _base_sequental_stream_methods + _base_sequential_stream_methods }; /**