<html><head><meta http-equiv="Content-Type" content="text/html charset=utf-8"><meta http-equiv="Content-Type" content="text/html charset=utf-8"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class="">I was just linting some code and I got a hit on:<div class=""><br class=""></div><div class="">…/lib/include/rtems/rtems/event.h<br class=""><div class=""><br class=""></div><div class=""><div style="margin: 0px; line-height: normal; font-family: 'Courier New'; color: rgb(79, 118, 203);" class="">/** <span style="color: #91afcb" class="">@brief</span> Defines the bit in the event set associated with event 31. */</div><div style="margin: 0px; line-height: normal; font-family: 'Courier New';" class=""><span style="color: #931a68" class=""><b class="">#define</b></span> RTEMS_EVENT_31    0x80000000</div><div class=""><br class=""></div>
<br class=""></div></div><div class="">0x80000000 should be unsigned, but it really isn’t.  It needs a trailing ‘U’</div><div class=""><br class=""></div><div class="">(along with the other event defines)</div><div class=""><br class=""></div><div class="">Thanks,</div><div class="">Andrei from The Great White North</div></body></html>