summaryrefslogtreecommitdiff
path: root/nuttx/arch/sh/src/m16c/m16c_lowputc.c
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2009-12-16 20:59:06 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2009-12-16 20:59:06 +0000
commit471b50c5f8f0f49ce8abfb8f0085d05cfe32edaa (patch)
tree6ad8b287c156c844116acc3dc4f55ec9069fd180 /nuttx/arch/sh/src/m16c/m16c_lowputc.c
parent692fdecda1d50a2d5ca3bd8338074ece4c8eee38 (diff)
downloadpx4-nuttx-471b50c5f8f0f49ce8abfb8f0085d05cfe32edaa.tar.gz
px4-nuttx-471b50c5f8f0f49ce8abfb8f0085d05cfe32edaa.tar.bz2
px4-nuttx-471b50c5f8f0f49ce8abfb8f0085d05cfe32edaa.zip
Changing NuttX fixed size type names to C99 standard names -- things will be broken for awhile
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@2361 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/arch/sh/src/m16c/m16c_lowputc.c')
-rw-r--r--nuttx/arch/sh/src/m16c/m16c_lowputc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/nuttx/arch/sh/src/m16c/m16c_lowputc.c b/nuttx/arch/sh/src/m16c/m16c_lowputc.c
index b5d32d915..4651e617e 100644
--- a/nuttx/arch/sh/src/m16c/m16c_lowputc.c
+++ b/nuttx/arch/sh/src/m16c/m16c_lowputc.c
@@ -308,7 +308,7 @@ void up_lowputc(char ch)
/* Write the data to the transmit buffer */
- putreg16((uint16_t))ch, M16C_UART_BASE + M16C_UART_TB);
+ putreg16((uint16_t)ch, M16C_UART_BASE + M16C_UART_TB);
#endif
}
#endif