Project

General

Profile

Revision 342

identified error

View differences:

interrupts_func.c
187 187

  
188 188
void (interrupt_handler)(uint8_t handler) {
189 189
    if (handler >= 32)              return;
190
    if ((*ih[handler]) == NULL)     return;
190
    if ((ih[handler]) == NULL)      return;
191 191
    (*ih[handler])();
192 192
}
193 193

  

Also available in: Unified diff