summaryrefslogtreecommitdiff
path: root/nuttx/lib
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2010-11-15 02:25:06 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2010-11-15 02:25:06 +0000
commitd58517b1ba80c3121b7f0c1689069e6f7c2d6c63 (patch)
tree877f21a77f438bf7658b0524be9427c72d1a6762 /nuttx/lib
parentc2111d312b08f0f2d92359f49ea6d9fa0c45c5d0 (diff)
downloadpx4-nuttx-d58517b1ba80c3121b7f0c1689069e6f7c2d6c63.tar.gz
px4-nuttx-d58517b1ba80c3121b7f0c1689069e6f7c2d6c63.tar.bz2
px4-nuttx-d58517b1ba80c3121b7f0c1689069e6f7c2d6c63.zip
Fix compile errors with debug on
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@3111 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/lib')
-rw-r--r--nuttx/lib/lib_fopen.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/nuttx/lib/lib_fopen.c b/nuttx/lib/lib_fopen.c
index 0bfb275b8..6502f0ee4 100644
--- a/nuttx/lib/lib_fopen.c
+++ b/nuttx/lib/lib_fopen.c
@@ -137,7 +137,7 @@ FAR struct file_struct *lib_fdopen(int fd, FAR const char *mode,
FAR struct filelist *flist,
FAR struct streamlist *slist)
{
- FAR struct inode *inode = flist;
+ FAR struct inode *inode;
FAR FILE *stream;
int oflags = lib_mode2oflags(mode);
int err = OK;