summaryrefslogtreecommitdiff
path: root/nuttx/lib
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-09-13 19:33:47 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-09-13 19:33:47 +0000
commit5cd2e68663850ca8bc2cbb40dd1678ab44dbca8b (patch)
tree06a526497f1ddad4705ae243302fde5191ca0a72 /nuttx/lib
parent5374c08d49eaec2d871030d96d9a31c8f59ef029 (diff)
downloadpx4-nuttx-5cd2e68663850ca8bc2cbb40dd1678ab44dbca8b.tar.gz
px4-nuttx-5cd2e68663850ca8bc2cbb40dd1678ab44dbca8b.tar.bz2
px4-nuttx-5cd2e68663850ca8bc2cbb40dd1678ab44dbca8b.zip
Changes needed for clean ez80 compile with ZDS toolchain
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5147 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/lib')
-rw-r--r--nuttx/lib/stdio/lib_fopen.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/nuttx/lib/stdio/lib_fopen.c b/nuttx/lib/stdio/lib_fopen.c
index 52e44c59d..29ff4569c 100644
--- a/nuttx/lib/stdio/lib_fopen.c
+++ b/nuttx/lib/stdio/lib_fopen.c
@@ -64,7 +64,7 @@ enum open_mode_e
MODE_A, /* "a" or "ab" open for writing, appending to file */
MODE_RPLUS, /* "r+", "rb+", or "r+b" open for update (reading and writing) */
MODE_WPLUS, /* "w+", "wb+", or "w+b" open for update, truncating or creating file */
- MODE_APLUS, /* "a+", "ab+", or "a+b" open for update, appending to file */
+ MODE_APLUS /* "a+", "ab+", or "a+b" open for update, appending to file */
};
/****************************************************************************