1
0
Fork 0
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:
Stefan Lankes 2017-07-28 13:33:30 +02:00
parent 30fef14454
commit c898bf266a

View file

@ -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;
}