Fixed minor error in lseek wrapper.

git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@3903 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
barthess 2012-02-01 20:09:52 +00:00
parent aef4a4f4a8
commit c216fe762b
1 changed files with 1 additions and 1 deletions

View File

@ -157,7 +157,7 @@ typedef struct {
*
* @api
*/
#define chFileStreamSeek(ip) ((ip)->vmt->lseek(ip, offset))
#define chFileStreamSeek(ip, offset) ((ip)->vmt->lseek(ip, offset))
/** @} */
#endif /* _CHFILES_H_ */