diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2012-05-06 10:33:18 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2012-05-06 10:33:18 +0000 |
commit | c391fe3413f5c566c1c080bcb5f37174e5d7dc8b (patch) | |
tree | 809cf5d9c816bbd82c451837b568aa4f122bd9c0 /os | |
parent | 2639f00ffae4016d01da40a5ad16ad73a6e8ac1b (diff) | |
download | ChibiOS-c391fe3413f5c566c1c080bcb5f37174e5d7dc8b.tar.gz ChibiOS-c391fe3413f5c566c1c080bcb5f37174e5d7dc8b.tar.bz2 ChibiOS-c391fe3413f5c566c1c080bcb5f37174e5d7dc8b.zip |
Fixed bug 3523769.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@4167 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os')
-rw-r--r-- | os/various/fatfs_bindings/fatfs_syscall.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/os/various/fatfs_bindings/fatfs_syscall.c b/os/various/fatfs_bindings/fatfs_syscall.c index 642b05fb3..09ebb1dd9 100644 --- a/os/various/fatfs_bindings/fatfs_syscall.c +++ b/os/various/fatfs_bindings/fatfs_syscall.c @@ -26,7 +26,7 @@ #include "ch.h"
#include "ff.h"
-MEMORYPOOL_DECL(fs_sem_pool, sizeof(Semaphore), chCoreAlloc);
+MEMORYPOOL_DECL(fs_sem_pool, sizeof(Semaphore), chCoreAllocI);
#if _FS_REENTRANT
/*------------------------------------------------------------------------*/
|