add to comments for pcbmap()
remove useless ";"

OK?

diff --git a/sys/msdosfs/msdosfs_fat.c b/sys/msdosfs/msdosfs_fat.c
index 3a3d4de0761..aeb822d4be2 100644
--- a/sys/msdosfs/msdosfs_fat.c
+++ b/sys/msdosfs/msdosfs_fat.c
@@ -123,6 +123,8 @@ fatblock(struct msdosfsmount *pmp, uint32_t ofs, uint32_t 
*bnp, uint32_t *sizep,
  *         If this pointer is null then don't return this quantity.
  * cnp   - address of where to place the file system relative cluster number.
  *         If this pointer is null then don't return this quantity.
+ * sp    - address of where to place the block size for the file/dir
+ *         If this pointer is null then don't return this quantity.
  *
  * NOTE: Either bnp or cnp must be non-null.
  * This function has one side effect.  If the requested file relative cluster
@@ -258,7 +260,7 @@ pcbmap(struct denode *dep, uint32_t findcn, daddr_t *bnp, 
uint32_t *cnp,
                return (0);
        }
 
-hiteof:;
+hiteof:
        if (cnp)
                *cnp = i;
        if (bp)

Reply via email to