summaryrefslogtreecommitdiff
path: root/nuttx/include/termios.h
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2011-12-10 13:34:25 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2011-12-10 13:34:25 +0000
commita6bbf53f7cf390e86597aab40e893dce6bb26758 (patch)
treefdb1b70e74891c301692e8fd11ff8f0a280f0048 /nuttx/include/termios.h
parentd7ad8f50c5ffa717829a34c396f4d477df2cfc87 (diff)
downloadpx4-nuttx-a6bbf53f7cf390e86597aab40e893dce6bb26758.tar.gz
px4-nuttx-a6bbf53f7cf390e86597aab40e893dce6bb26758.tar.bz2
px4-nuttx-a6bbf53f7cf390e86597aab40e893dce6bb26758.zip
Misc compilation warning cleanup
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4155 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/include/termios.h')
-rw-r--r--nuttx/include/termios.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/nuttx/include/termios.h b/nuttx/include/termios.h
index 9e87e72a8..25ce61b40 100644
--- a/nuttx/include/termios.h
+++ b/nuttx/include/termios.h
@@ -198,11 +198,11 @@ typedef int cc_t; /* Used for terminal special characters */
struct termios
{
- tcflag_t c_iflag /* Input modes */
- tcflag_t c_oflag /* Output modes */
- tcflag_t c_cflag /* Control modes */
- tcflag_t c_lflag /* Local modes */
- cc_t c_cc[NCCS] /* Control chars */
+ tcflag_t c_iflag; /* Input modes */
+ tcflag_t c_oflag; /* Output modes */
+ tcflag_t c_cflag; /* Control modes */
+ tcflag_t c_lflag; /* Local modes */
+ cc_t c_cc[NCCS]; /* Control chars */
};
/****************************************************************************