From 02f6edf5ef62b0817629fca951096c743c8cca5d Mon Sep 17 00:00:00 2001 From: Luis Michaelis Date: Tue, 30 Apr 2024 20:15:04 +0200 Subject: [PATCH] fix(build): MinGW complaints in `Dm_embellishmentToCommand` --- src/Common.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Common.c b/src/Common.c index 5e783aa..ec31166 100644 --- a/src/Common.c +++ b/src/Common.c @@ -40,6 +40,7 @@ DmCommandType Dm_embellishmentToCommand(DmEmbellishmentType embellishment) { case DmEmbellishment_END: return DmCommand_END; } + return DmCommand_GROOVE; } bool DmGuid_equals(DmGuid const* a, DmGuid const* b) {