Fix AVR warnings; FAT FS needs to use off_t instead of size_t

git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@3728 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
patacongo
2011-06-20 20:54:45 +00:00
parent a06d4256e4
commit 37b42d4259
13 changed files with 79 additions and 68 deletions
+1 -1
View File
@@ -469,7 +469,7 @@ static off_t romfs_seek(FAR struct file *filep, off_t offset, int whence)
{
struct romfs_mountpt_s *rm;
struct romfs_file_s *rf;
ssize_t position;
off_t position;
int ret;
fvdbg("Seek to offset: %d whence: %d\n", offset, whence);