summaryrefslogtreecommitdiff
path: root/nuttx/fs/fs_close.c
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-07-14 21:05:40 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-07-14 21:05:40 +0000
commit3044a5f0f6197f3923c1229ef1974b17284f56df (patch)
tree189259eb60c6bdc6a646e62b0eb684ae5719554d /nuttx/fs/fs_close.c
parent3bfb6d9fd94c9f871eecab92a0d550ab66e5042b (diff)
downloadpx4-nuttx-3044a5f0f6197f3923c1229ef1974b17284f56df.tar.gz
px4-nuttx-3044a5f0f6197f3923c1229ef1974b17284f56df.tar.bz2
px4-nuttx-3044a5f0f6197f3923c1229ef1974b17284f56df.zip
Clean-up files in fs/ directory
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4942 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/fs/fs_close.c')
-rw-r--r--nuttx/fs/fs_close.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/nuttx/fs/fs_close.c b/nuttx/fs/fs_close.c
index ce506725a..7f08995de 100644
--- a/nuttx/fs/fs_close.c
+++ b/nuttx/fs/fs_close.c
@@ -55,7 +55,7 @@
****************************************************************************/
/****************************************************************************
- * Function: close
+ * Name: close
*
* Description:
* close() closes a file descriptor, so that it no longer refers to any
@@ -127,7 +127,7 @@ int close(int fd)
#endif
errout:
- errno = err;
+ set_errno(err);
return ERROR;
}