summaryrefslogtreecommitdiff
path: root/nuttx/fs/fs_dup.c
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/fs/fs_dup.c')
-rw-r--r--nuttx/fs/fs_dup.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/nuttx/fs/fs_dup.c b/nuttx/fs/fs_dup.c
index a72509595..890da039b 100644
--- a/nuttx/fs/fs_dup.c
+++ b/nuttx/fs/fs_dup.c
@@ -2,7 +2,7 @@
* fs/fs_dup.c
*
* Copyright (C) 2007-2009 Gregory Nutt. All rights reserved.
- * Author: Gregory Nutt <spudmonkey@racsa.co.cr>
+ * Author: Gregory Nutt <gnutt@nuttx.org>
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@@ -98,10 +98,10 @@ int dup(int fildes)
{
/* No.. then it is a bad descriptor number */
- errno = EBADF;
+ set_errno(EBADF);
ret = ERROR;
}
}
+
return ret;
}
-