mirror of
https://github.com/apache/nuttx.git
synced 2026-06-04 23:03:27 +08:00
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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user