summaryrefslogtreecommitdiff
path: root/nuttx/examples/nx/nx_kbdin.c
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2010-05-16 13:09:48 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2010-05-16 13:09:48 +0000
commit5634f4a9b27ec9601e8dc807dd54bc26f06f1cf6 (patch)
tree20eb254656f830306bff8de55c49451054d2001c /nuttx/examples/nx/nx_kbdin.c
parent5283175cecbed16f3cecb315ac7db84d283ac451 (diff)
downloadnuttx-5634f4a9b27ec9601e8dc807dd54bc26f06f1cf6.tar.gz
nuttx-5634f4a9b27ec9601e8dc807dd54bc26f06f1cf6.tar.bz2
nuttx-5634f4a9b27ec9601e8dc807dd54bc26f06f1cf6.zip
board.h should not include files in arch directory
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@2680 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/examples/nx/nx_kbdin.c')
-rw-r--r--nuttx/examples/nx/nx_kbdin.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/nuttx/examples/nx/nx_kbdin.c b/nuttx/examples/nx/nx_kbdin.c
index 057f725d2..7d3bcc5fe 100644
--- a/nuttx/examples/nx/nx_kbdin.c
+++ b/nuttx/examples/nx/nx_kbdin.c
@@ -205,7 +205,7 @@ nxeg_renderglyph(FAR struct nxeg_state_s *st,
/* Pack 4-bit nibbles into a byte */
pixel &= 0x0f;
- pixel = (pixel) << 4 |pixel;
+ pixel = (pixel) << 4 | pixel;
ptr = (FAR nxgl_mxpixel_t *)glyph->bitmap;
for (row = 0; row < glyph->height; row++)