summaryrefslogtreecommitdiff
path: root/nuttx/fs/nxffs/nxffs_inode.c
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2011-05-03 13:46:14 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2011-05-03 13:46:14 +0000
commit77ddf4fe79c737c9005b879298dbb5c96fca56e2 (patch)
treef1d4d770e34fa779f4365d50318f51f123ef2d99 /nuttx/fs/nxffs/nxffs_inode.c
parent337053d3d948beb9523352bc7fc682b201becab2 (diff)
downloadpx4-nuttx-77ddf4fe79c737c9005b879298dbb5c96fca56e2.tar.gz
px4-nuttx-77ddf4fe79c737c9005b879298dbb5c96fca56e2.tar.bz2
px4-nuttx-77ddf4fe79c737c9005b879298dbb5c96fca56e2.zip
Swap size of cache and pack buffers
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@3554 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/fs/nxffs/nxffs_inode.c')
-rw-r--r--nuttx/fs/nxffs/nxffs_inode.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/nuttx/fs/nxffs/nxffs_inode.c b/nuttx/fs/nxffs/nxffs_inode.c
index 02ac3ca05..6f77dcf57 100644
--- a/nuttx/fs/nxffs/nxffs_inode.c
+++ b/nuttx/fs/nxffs/nxffs_inode.c
@@ -152,7 +152,7 @@ static int nxffs_rdentry(FAR struct nxffs_volume_s *volume, off_t offset,
* same block as the inode header.
*/
- ret = nxffs_rdcache(volume, volume->ioblock, 1);
+ ret = nxffs_rdcache(volume, volume->ioblock);
if (ret < 0)
{
fdbg("nxffsx_rdcache failed: %d\n", -ret);