surpress warning.
This commit is contained in:
parent
eed8544a0d
commit
3178906b43
1 changed files with 1 additions and 1 deletions
|
@ -7,7 +7,7 @@ void irq(void)
|
|||
{
|
||||
uint32_t pending;
|
||||
|
||||
while (pending = *NIPEND) {
|
||||
while ((pending = *NIPEND)) {
|
||||
|
||||
if(bit_is_set(pending, INT_NUM_TMR)) {
|
||||
/* dispatch to individual timer isrs if they exist */
|
||||
|
|
Loading…
Reference in a new issue