Skip to content

Commit a69979a

Browse files
Fix type mismatch warning
1 parent cf24646 commit a69979a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/USBH_MIDI/bidrectional_converter/bidrectional_converter.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ void doDelay(unsigned long t1, unsigned long t2, unsigned long delayTime);
5151
#ifdef USBH_MIDI_SYSEX_ENABLE
5252
MidiSysEx sysExData;
5353
//SysEx:
54-
void handle_sysex( byte* sysexmsg, uint16_t sizeofsysex) {
54+
void handle_sysex( byte* sysexmsg, unsigned sizeofsysex) {
5555
Midi.SendSysEx(sysexmsg, sizeofsysex);
5656
}
5757
#endif

0 commit comments

Comments
 (0)