Missing parenthesis in NXGL code; add debug output to LPC1788 LCD driver

git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5797 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
patacongo
2013-03-28 15:04:01 +00:00
parent 219c13bb1c
commit 0af8e9642a
2 changed files with 62 additions and 34 deletions
+1 -1
View File
@@ -230,7 +230,7 @@ void NXGL_FUNCNAME(nxgl_filltrapezoid,NXGLIB_SUFFIX)(
/* Handle masking of the fractional initial byte */
#ifdef CONFIG_NX_PACKEDMSFIRST
mask = (uint8_t)(0xff >> (8 - NXGL_REMAINDERX(ix1));
mask = (uint8_t)(0xff >> (8 - NXGL_REMAINDERX(ix1)));
#else
mask = (uint8_t)(0xff << (8 - NXGL_REMAINDERX(ix1)));
#endif