Skip to content

Commit

Permalink
Fix missing paren
Browse files Browse the repository at this point in the history
  • Loading branch information
dylwhich committed Sep 19, 2024
1 parent 983d65e commit 22a5965
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion emulator/src/extensions/midi/ext_midi.c
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ static pascal OSErr handleOpenDocumentEvent(const AppleEvent* event, AppleEvent*
CFStringRef docStringRef = CFURLCopyFileSystemPath(docUrlRef, kCFURLPOSIXPathStyle);
if (docStringRef != NULL)
{
if (CFStringGetFileSystemRepresentation(docStringRef, midiPathBuffer, sizeof(midiPathBuffer))
if (CFStringGetFileSystemRepresentation(docStringRef, midiPathBuffer, sizeof(midiPathBuffer)))
{
printf("Successfully handled event?\n");
}
Expand Down

0 comments on commit 22a5965

Please sign in to comment.