FatFs: My patch to fix wrong argument type warning.

This commit is contained in:
Jared Boone 2016-07-28 23:21:13 -07:00
parent e9d97dfd0f
commit 69173f5292

View File

@ -3992,7 +3992,7 @@ FRESULT f_lseek (
#if !_FS_TINY
#if !_FS_READONLY
if (fp->flag & FA_DIRTY) { /* Write-back dirty sector cache */
if (disk_write(fs->drv, fp->buf, fp->sect, 1) != RES_OK) ABORT(fp, FR_DISK_ERR);
if (disk_write(fs->drv, fp->buf, fp->sect, 1) != RES_OK) ABORT(fs, FR_DISK_ERR);
fp->flag &= ~FA_DIRTY;
}
#endif