summaryrefslogtreecommitdiff
path: root/nuttx/include
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-10-20 13:14:04 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-10-20 13:14:04 +0000
commite67fe7912645818ff9f4f19481b64fe363f5d357 (patch)
treebb4458f7418421ec9bf27c39b16571172099b2b3 /nuttx/include
parentf80429b503882bda76e31041cb299352afde2686 (diff)
downloadpx4-nuttx-e67fe7912645818ff9f4f19481b64fe363f5d357.tar.gz
px4-nuttx-e67fe7912645818ff9f4f19481b64fe363f5d357.tar.bz2
px4-nuttx-e67fe7912645818ff9f4f19481b64fe363f5d357.zip
The termios c_speed field cannot be 'const'
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5234 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/include')
-rw-r--r--nuttx/include/termios.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/nuttx/include/termios.h b/nuttx/include/termios.h
index e381814e3..2e1c38fc2 100644
--- a/nuttx/include/termios.h
+++ b/nuttx/include/termios.h
@@ -230,7 +230,7 @@ struct termios
* cf[set|get][o|i]speed() POSIX interfaces.
*/
- const speed_t c_speed; /* Input/output speed (non-POSIX)*/
+ speed_t c_speed; /* Input/output speed (non-POSIX)*/
};
/****************************************************************************