mirror of
https://github.com/qmk/qmk_firmware.git
synced 2025-07-17 13:12:08 +00:00
add parens around args in MIDI_EVENT macro
This commit is contained in:
parent
2f4b2e6f34
commit
b1603ba06e
@ -135,7 +135,7 @@
|
|||||||
*
|
*
|
||||||
* \return Constructed MIDI event ID.
|
* \return Constructed MIDI event ID.
|
||||||
*/
|
*/
|
||||||
#define MIDI_EVENT(virtualcable, command) ((virtualcable << 4) | (command >> 4))
|
#define MIDI_EVENT(virtualcable, command) (((virtualcable) << 4) | ((command) >> 4))
|
||||||
|
|
||||||
/* Enums: */
|
/* Enums: */
|
||||||
/** Enum for the possible MIDI jack types in a MIDI device jack descriptor. */
|
/** Enum for the possible MIDI jack types in a MIDI device jack descriptor. */
|
||||||
|
Loading…
Reference in New Issue
Block a user