TimJTi commented on code in PR #16257: URL: https://github.com/apache/nuttx/pull/16257#discussion_r2061506251
########## include/nuttx/video/rgbcolors.h: ########## @@ -33,10 +33,9 @@ /* Color Creation and Conversion Macros *************************************/ -/* This macro creates RGB24 from 8:8:8 RGB */ - #define RGBTO24(r,g,b) \ - ((uint32_t)((r) & 0xff) << 16 | (uint32_t)((g) & 0xff) << 8 | (uint32_t)((b) & 0xff)) + ((uint32_t)((r) & 0xff) << 16 | (uint32_t)((g) & 0xff) << 8 | \ Review Comment: line length - which I think applies to .h files? Can't remember if checkpatch complained or if I just do this automatically now! -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@nuttx.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org