summaryrefslogtreecommitdiff
path: root/apps/nshlib/nsh_envcmds.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/nshlib/nsh_envcmds.c')
-rw-r--r--apps/nshlib/nsh_envcmds.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/apps/nshlib/nsh_envcmds.c b/apps/nshlib/nsh_envcmds.c
index 07b775517..02c0ec02e 100644
--- a/apps/nshlib/nsh_envcmds.c
+++ b/apps/nshlib/nsh_envcmds.c
@@ -157,7 +157,8 @@ FAR const char *nsh_getcwd(void)
****************************************************************************/
#if CONFIG_NFILE_DESCRIPTORS > 0 && !defined(CONFIG_DISABLE_ENVIRON)
-char *nsh_getfullpath(FAR struct nsh_vtbl_s *vtbl, const char *relpath)
+FAR char *nsh_getfullpath(FAR struct nsh_vtbl_s *vtbl,
+ FAR const char *relpath)
{
const char *wd;
@@ -196,11 +197,11 @@ char *nsh_getfullpath(FAR struct nsh_vtbl_s *vtbl, const char *relpath)
****************************************************************************/
#if CONFIG_NFILE_DESCRIPTORS > 0 && !defined(CONFIG_DISABLE_ENVIRON)
-void nsh_freefullpath(char *relpath)
+void nsh_freefullpath(FAR char *fullpath)
{
- if (relpath)
+ if (fullpath)
{
- free(relpath);
+ free(fullpath);
}
}
#endif