summaryrefslogtreecommitdiff
path: root/nuttx/fs/nxffs/nxffs_write.c
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/fs/nxffs/nxffs_write.c')
-rw-r--r--nuttx/fs/nxffs/nxffs_write.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/nuttx/fs/nxffs/nxffs_write.c b/nuttx/fs/nxffs/nxffs_write.c
index 3d7ad063d..8e91d2a7e 100644
--- a/nuttx/fs/nxffs/nxffs_write.c
+++ b/nuttx/fs/nxffs/nxffs_write.c
@@ -403,7 +403,7 @@ static inline ssize_t nxffs_wrappend(FAR struct nxffs_volume_s *volume,
if (nbytesleft > 0)
{
- ret = nxffs_wrcache(volume, volume->ioblock, 1);
+ ret = nxffs_wrcache(volume);
if (ret < 0)
{
fdbg("nxffs_wrcache failed: %d\n", -ret);
@@ -811,7 +811,7 @@ int nxffs_wrblkhdr(FAR struct nxffs_volume_s *volume,
/* And write the data block to FLASH */
- ret = nxffs_wrcache(volume, volume->ioblock, 1);
+ ret = nxffs_wrcache(volume);
if (ret < 0)
{
fdbg("nxffs_wrcache failed: %d\n", -ret);