Fixed bug 3579660.

git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@4781 35acf78f-673a-0410-8e92-d51de3d6d3f4
master
gdisirio 2012-10-28 07:17:38 +00:00
parent dc09d4cc0d
commit 7ea2ed1e47
2 changed files with 3 additions and 1 deletions

View File

@ -134,7 +134,7 @@ typedef struct {
*
* @api
*/
#define chFileStreamGetSize(ip) ((ip)->vmt->getposition(ip))
#define chFileStreamGetSize(ip) ((ip)->vmt->getsize(ip))
/**
* @brief Returns the current file pointer position.

View File

@ -82,6 +82,8 @@
*****************************************************************************
*** 2.5.1 ***
- FIX: Fixed bug in abstract file interface (bug 3579660)(backported to
2.2.10 and 2.4.3).
- FIX: Fixed wrong type for UART config registers (bug 3579434).
- FIX: Fixed various typos and wrong limits in the STM32F4/F2 HAL driver
(bug 3578944)(backported to 2.4.3).