Skip to content

Commit

Permalink
Clarify operation order, fixing Wparenthesis in usb glitchkit simple
Browse files Browse the repository at this point in the history
  • Loading branch information
Qyriad committed Nov 15, 2018
1 parent c9199be commit 521d42c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion firmware/greatfet_usb/usb_api_glitchkit_simple.c
Expand Up @@ -176,7 +176,7 @@ usb_request_status_t usb_vendor_request_glitchkit_simple_enable_trigger(
GLITCHKIT_INTERRUPT_PRIORITY);

// Mark the current interrupt as used.
active_interrupt_mask |= (1 << active_interrupt_count + 1);
active_interrupt_mask |= (1 << (active_interrupt_count + 1));
++active_interrupt_count;
}
}
Expand Down

0 comments on commit 521d42c

Please sign in to comment.