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 e3dd84931..a15592655 100644
--- a/nuttx/fs/nxffs/nxffs_write.c
+++ b/nuttx/fs/nxffs/nxffs_write.c
@@ -715,7 +715,7 @@ int nxffs_wrverify(FAR struct nxffs_volume_s *volume, size_t size)
iooffset = volume->iooffset;
nerased = 0;
- for (i = volume->iooffset; i <= volume->geo.blocksize - size; i++)
+ for (i = volume->iooffset; i < volume->geo.blocksize; i++)
{
/* Is this byte erased? */
@@ -745,7 +745,7 @@ int nxffs_wrverify(FAR struct nxffs_volume_s *volume, size_t size)
else
{
nerased = 0;
- iooffset = volume->iooffset + 1;
+ iooffset = i + 1;
}
}