From 87e957c6a6334b97d120ef4a01fcc864e518f0ac Mon Sep 17 00:00:00 2001 From: Hongjin Li Date: Thu, 17 Nov 2022 20:15:53 +0800 Subject: [PATCH] fixed 2dc3998 from https://gitee.com/hongjin-li/kernel_liteos_m/pulls/919 fix: add space after comma Signed-off-by: Hongjin Li --- components/fs/vfs/vfs_mount.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/fs/vfs/vfs_mount.c b/components/fs/vfs/vfs_mount.c index 81578911..737013b7 100644 --- a/components/fs/vfs/vfs_mount.c +++ b/components/fs/vfs/vfs_mount.c @@ -156,7 +156,7 @@ STATIC struct MountPoint *VfsMountPointInit(const char *target, const char *fsTy return mp; } -STATIC int VfsRemount(const char *source ,const char *target, +STATIC int VfsRemount(const char *source, const char *target, const char *fsType, unsigned long mountflags, const void *data) {