summaryrefslogtreecommitdiff
path: root/nuttx
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-11-02 17:27:07 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-11-02 17:27:07 -0600
commitd5ac348ccc43fdef4f429f1f9a1411d2618c9d74 (patch)
tree72def50719828e47bdff1798a280caa6b8dc13fe /nuttx
parentc9466152fb7bc8d58954e0e3252707fe99d67ba7 (diff)
parentbe11f4038578d1f1f37ee3aa40913511af6c1b18 (diff)
downloadpx4-nuttx-d5ac348ccc43fdef4f429f1f9a1411d2618c9d74.tar.gz
px4-nuttx-d5ac348ccc43fdef4f429f1f9a1411d2618c9d74.tar.bz2
px4-nuttx-d5ac348ccc43fdef4f429f1f9a1411d2618c9d74.zip
Merge remote-tracking branch 'origin/master' into bas24
Diffstat (limited to 'nuttx')
-rw-r--r--nuttx/fs/vfs/fs_open.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/nuttx/fs/vfs/fs_open.c b/nuttx/fs/vfs/fs_open.c
index fd6562ac3..1fb0cb538 100644
--- a/nuttx/fs/vfs/fs_open.c
+++ b/nuttx/fs/vfs/fs_open.c
@@ -107,7 +107,7 @@ int open(const char *path, int oflags, ...)
/* If the file is opened for creation, then get the mode bits */
- if (oflags & (O_WRONLY|O_CREAT) != 0)
+ if ((oflags & (O_WRONLY|O_CREAT)) != 0)
{
va_list ap;
va_start(ap, oflags);