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
This commit is contained in:
gdisirio 2010-10-18 17:51:42 +00:00
parent a03d3b88ad
commit 706eeee50b
1 changed files with 2 additions and 2 deletions

View File

@ -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
};
/**