ソースを参照

correct the return type of nfs_init

git-svn-id: https://rt-thread.googlecode.com/svn/trunk@2245 bbd45198-f89e-11dd-88c7-29a3b14d5316
dzzxzz@gmail.com 12 年 前
コミット
bc7e8d69e6
1 ファイル変更1 行追加1 行削除
  1. 1 1
      components/init/components_init.c

+ 1 - 1
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