aboutsummaryrefslogtreecommitdiff
path: root/nuttx
diff options
context:
space:
mode:
authorpx4dev <px4@purgatory.org>2012-11-30 21:50:55 -0800
committerpx4dev <px4@purgatory.org>2012-11-30 21:50:55 -0800
commit7f22811afb3078b1f86b2d462d13e0d06e3a5c88 (patch)
tree2087b16ffdbb4c41c3a5e6109f950b24aa7f869f /nuttx
parent2ac0cac11f3e3d896efee541eff36be42ff76914 (diff)
downloadpx4-firmware-7f22811afb3078b1f86b2d462d13e0d06e3a5c88.tar.gz
px4-firmware-7f22811afb3078b1f86b2d462d13e0d06e3a5c88.tar.bz2
px4-firmware-7f22811afb3078b1f86b2d462d13e0d06e3a5c88.zip
Fix <termios.h> for c++ use (cannot mark speed const)
Diffstat (limited to 'nuttx')
-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..af1867a22 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)*/
};
/****************************************************************************