From 042881eed33e21f1345d7eec355de79150fea174 Mon Sep 17 00:00:00 2001 From: YAMAMOTO Takashi Date: Sun, 22 Nov 2020 09:38:55 +0900 Subject: [PATCH] fs/nxffs/nxffs_cache.c: Appease nxstyle --- fs/nxffs/nxffs_cache.c | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/fs/nxffs/nxffs_cache.c b/fs/nxffs/nxffs_cache.c index 63bf071e1c..2995b9d7ca 100644 --- a/fs/nxffs/nxffs_cache.c +++ b/fs/nxffs/nxffs_cache.c @@ -179,8 +179,9 @@ off_t nxffs_iotell(FAR struct nxffs_volume_s *volume) * over bad blocks and block headers as necessary. * * Input Parameters: - * volume - Describes the NXFFS volume. The parameters ioblock and iooffset - * in the volume structure determine the behavior of nxffs_getc(). + * volume - Describes the NXFFS volume. The parameters ioblock and + * iooffset in the volume structure determine the behavior of + * nxffs_getc(). * reserve - If less than this much space is available at the end of the * block, then skip to the next block. * @@ -200,7 +201,9 @@ int nxffs_getc(FAR struct nxffs_volume_s *volume, uint16_t reserve) do { - /* Check if we have the reserve amount at the end of the current block */ + /* Check if we have the reserve amount at the end of the current + * block + */ if (volume->iooffset + reserve > volume->geo.blocksize) {