From bc7e8d69e6252e4fdf393559072be955fc44f58c Mon Sep 17 00:00:00 2001 From: "dzzxzz@gmail.com" Date: Thu, 2 Aug 2012 13:56:15 +0000 Subject: [PATCH] correct the return type of nfs_init git-svn-id: https://rt-thread.googlecode.com/svn/trunk@2245 bbd45198-f89e-11dd-88c7-29a3b14d5316 --- components/init/components_init.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/init/components_init.c b/components/init/components_init.c index b9414d3f6..b5b30e936 100644 --- a/components/init/components_init.c +++ b/components/init/components_init.c @@ -79,7 +79,7 @@ void rt_components_init(void) #endif #if defined(RT_USING_DFS_NFS) && defined(RT_USING_LWIP) - extern void nfs_init(void); + extern int nfs_init(void); /* initialize NFSv3 client file system */ nfs_init(); #endif -- GitLab