X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=bertos%2Fdrv%2Fdataflash.c;h=f70628fb18cf52a1e6e9dc2f4ae6e5b677abb5d8;hb=4b4f34de5ffd5ccd065427d129f120aae300b7ca;hp=cad2c610813ac1d054ac821a63e7001a9f15e8d6;hpb=34095954298315121af602c079ca784329d53b12;p=bertos.git diff --git a/bertos/drv/dataflash.c b/bertos/drv/dataflash.c index cad2c610..f70628fb 100644 --- a/bertos/drv/dataflash.c +++ b/bertos/drv/dataflash.c @@ -351,7 +351,7 @@ static size_t dataflash_read(struct KFile *_fd, void *buf, size_t size) uint8_t *data = (uint8_t *)buf; - ASSERT(fd->fd.seek_pos + size <= (kfile_off_t)fd->fd.size); + ASSERT(fd->fd.seek_pos + size <= (kfile_size_t)fd->fd.size); size = MIN((kfile_size_t)size, fd->fd.size - fd->fd.seek_pos); LOG_INFO("Reading at pos[%lu]\n", fd->fd.seek_pos);