From f508d58c055907ecee68f7e2102af4a3c353b39f Mon Sep 17 00:00:00 2001 From: Wayne Lin Date: Tue, 7 Dec 2021 13:10:42 +0800 Subject: [PATCH] Strip tailing space. --- components/drivers/sdio/block_dev.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/drivers/sdio/block_dev.c b/components/drivers/sdio/block_dev.c index c546f4a99a..3a51cc558d 100644 --- a/components/drivers/sdio/block_dev.c +++ b/components/drivers/sdio/block_dev.c @@ -449,7 +449,7 @@ rt_int32_t rt_mmcsd_blk_probe(struct rt_mmcsd_card *card) status = rt_mmcsd_req_blk(card, 0, sector, 1, 0); if (status == RT_EOK) { - rt_uint8_t i; + rt_uint8_t i; char dname[8]; struct dfs_partition part; struct mmcsd_blk_device *blk_dev = RT_NULL; -- GitLab