mirror of
https://github.com/hermitcore/libhermit.git
synced 2025-03-30 00:00:15 +01:00
increasing the readability
This commit is contained in:
parent
ac06dec12d
commit
f8b1d0050a
1 changed files with 1 additions and 1 deletions
|
@ -290,7 +290,7 @@ size_t** irq_handler(struct state *s)
|
|||
|
||||
size_t** ret = NULL;
|
||||
|
||||
if(BUILTIN_EXPECT(s->int_no >= MAX_HANDLERS, 0)) {
|
||||
if (BUILTIN_EXPECT(s->int_no >= MAX_HANDLERS, 0)) {
|
||||
LOG_ERROR("Invalid IRQ number %d\n", s->int_no);
|
||||
return NULL;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue