From 0fc5b49d9ff12dfc193f537af7af7887db1747fb Mon Sep 17 00:00:00 2001 From: Ben Loftis Date: Tue, 4 Jun 2024 15:34:53 -0500 Subject: [PATCH] build fix for mac --- libs/backends/coreaudio/coremidi_io.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/backends/coreaudio/coremidi_io.h b/libs/backends/coreaudio/coremidi_io.h index ce41560c45..3d49015cfc 100644 --- a/libs/backends/coreaudio/coremidi_io.h +++ b/libs/backends/coreaudio/coremidi_io.h @@ -56,7 +56,7 @@ typedef struct _CoreMIDIPacket { : timeStamp(other->timeStamp) , length (other->length) { - assert (l <= 1024); + assert (length <= 1024); if (length > 0) { memcpy(data, other->data, length); }