From c7fda4cfb7ada8aa0935b4e4f6c98fcb2dbb4b48 Mon Sep 17 00:00:00 2001 From: John Hodge Date: Wed, 8 Feb 2012 14:59:04 +0800 Subject: [PATCH] Fixing compile warnings --- Kernel/vfs/dir.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Kernel/vfs/dir.c b/Kernel/vfs/dir.c index aee7a603..d4c15309 100644 --- a/Kernel/vfs/dir.c +++ b/Kernel/vfs/dir.c @@ -13,9 +13,9 @@ extern tVFS_Mount *gRootMount; // === PROTOTYPES === #if 0 int VFS_MkDir(const char *Path); -#endif int VFS_MkNod(const char *Path, Uint Flags); -// int VFS_Symlink(const char *Name, const char *Link); + int VFS_Symlink(const char *Name, const char *Link); +#endif // === CODE === /** -- 2.20.1