summaryrefslogtreecommitdiff
path: root/nuttx/fs/nxffs/nxffs_block.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_block.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_block.c')
-rw-r--r--nuttx/fs/nxffs/nxffs_block.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/nuttx/fs/nxffs/nxffs_block.c b/nuttx/fs/nxffs/nxffs_block.c
index 78708e380..27f3249e3 100644
--- a/nuttx/fs/nxffs/nxffs_block.c
+++ b/nuttx/fs/nxffs/nxffs_block.c
@@ -96,7 +96,7 @@ int nxffs_verifyblock(FAR struct nxffs_volume_s *volume, off_t block)
/* Make sure the the block is in the cache */
- ret = nxffs_rdcache(volume, block, 1);
+ ret = nxffs_rdcache(volume, block);
if (ret < 0)
{
fdbg("Failed to read data into cache: %d\n", ret);