From f812f168ddf4d94bbd4f64b3c67283330e3ee860 Mon Sep 17 00:00:00 2001 From: patacongo Date: Thu, 3 May 2012 23:37:34 +0000 Subject: [PATCH] NSF update git-svn-id: https://nuttx.svn.sourceforge.net/svnroot/nuttx/trunk@4696 7fd9a85b-ad96-42d3-883c-3090e2eb8679 --- apps/nshlib/nsh_fscmds.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/apps/nshlib/nsh_fscmds.c b/apps/nshlib/nsh_fscmds.c index 92d19e3714..28a779292e 100644 --- a/apps/nshlib/nsh_fscmds.c +++ b/apps/nshlib/nsh_fscmds.c @@ -58,7 +58,6 @@ # include # include # include -# include # endif #endif #endif @@ -1340,7 +1339,7 @@ int cmd_nfsmount(FAR struct nsh_vtbl_s *vtbl, int argc, char **argv) /* Create an instance of the sockaddr_in state structure */ - sin = (struct sockaddr_in *)kzalloc(sizeof(struct sockaddr_in)); + sin = (struct sockaddr_in *)zalloc(sizeof(struct sockaddr_in)); if (!sin) { nsh_output(vtbl, g_fmtcmdoutofmemory, argv[0]);