mirror of
https://github.com/hermitcore/libhermit.git
synced 2025-03-09 00:00:03 +01:00
increasing the readability
This commit is contained in:
parent
30fef14454
commit
c898bf266a
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