SDL_mixer: Trailing semicolon is embedded in SDL_ELF_NOTE_DLOPEN

From d684fe137d44dd112bc86c1db390fcec11f8085f Mon Sep 17 00:00:00 2001
From: Anonymous Maarten <[EMAIL REDACTED]>
Date: Wed, 24 Dec 2025 22:08:15 +0100
Subject: [PATCH] Trailing semicolon is embedded in SDL_ELF_NOTE_DLOPEN

---
 Xcode/iOS/SDL3.framework/Headers/SDL_dlopennote.h              | 2 +-
 Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_dlopennote.h | 2 +-
 src/decoder_flac.c                                             | 2 +-
 src/decoder_fluidsynth.c                                       | 2 +-
 src/decoder_gme.c                                              | 2 +-
 src/decoder_mpg123.c                                           | 2 +-
 src/decoder_opus.c                                             | 2 +-
 src/decoder_vorbis.c                                           | 2 +-
 src/decoder_wavpack.c                                          | 2 +-
 src/decoder_xmp.c                                              | 2 +-
 10 files changed, 10 insertions(+), 10 deletions(-)

diff --git a/Xcode/iOS/SDL3.framework/Headers/SDL_dlopennote.h b/Xcode/iOS/SDL3.framework/Headers/SDL_dlopennote.h
index da145eed..b25edf4e 100644
--- a/Xcode/iOS/SDL3.framework/Headers/SDL_dlopennote.h
+++ b/Xcode/iOS/SDL3.framework/Headers/SDL_dlopennote.h
@@ -207,7 +207,7 @@
         "\",\"description\":\"" description                      \
         "\",\"priority\":\"" priority                            \
         "\",\"soname\":" SDL_SONAME_ARRAY(__VA_ARGS__) "}]",     \
-        SDL_ELF_NOTE_UNIQUE_NAME)
+        SDL_ELF_NOTE_UNIQUE_NAME);
 
 #elif defined(__GNUC__) && __GNUC__ < 3
 
diff --git a/Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_dlopennote.h b/Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_dlopennote.h
index da145eed..b25edf4e 100644
--- a/Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_dlopennote.h
+++ b/Xcode/macOS/SDL3.framework/Versions/A/Headers/SDL_dlopennote.h
@@ -207,7 +207,7 @@
         "\",\"description\":\"" description                      \
         "\",\"priority\":\"" priority                            \
         "\",\"soname\":" SDL_SONAME_ARRAY(__VA_ARGS__) "}]",     \
-        SDL_ELF_NOTE_UNIQUE_NAME)
+        SDL_ELF_NOTE_UNIQUE_NAME);
 
 #elif defined(__GNUC__) && __GNUC__ < 3
 
diff --git a/src/decoder_flac.c b/src/decoder_flac.c
index 159e44a5..63893d37 100644
--- a/src/decoder_flac.c
+++ b/src/decoder_flac.c
@@ -31,7 +31,7 @@ SDL_ELF_NOTE_DLOPEN(
     "Support for FLAC audio using libFLAC",
     SDL_ELF_NOTE_DLOPEN_PRIORITY_SUGGESTED,
     FLAC_DYNAMIC
-);
+)
 #endif
 
 #ifdef FLAC_DYNAMIC
diff --git a/src/decoder_fluidsynth.c b/src/decoder_fluidsynth.c
index f137a601..02df5b83 100644
--- a/src/decoder_fluidsynth.c
+++ b/src/decoder_fluidsynth.c
@@ -33,7 +33,7 @@ SDL_ELF_NOTE_DLOPEN(
     "Support for MIDI audio using FluidSynth",
     SDL_ELF_NOTE_DLOPEN_PRIORITY_SUGGESTED,
     FLUIDSYNTH_DYNAMIC
-);
+)
 #endif
 
 #ifdef FLUIDSYNTH_DYNAMIC
diff --git a/src/decoder_gme.c b/src/decoder_gme.c
index f1d4d048..49d4bd83 100644
--- a/src/decoder_gme.c
+++ b/src/decoder_gme.c
@@ -31,7 +31,7 @@ SDL_ELF_NOTE_DLOPEN(
     "Support for audio of classic video game consoles using game-music-emu",
     SDL_ELF_NOTE_DLOPEN_PRIORITY_SUGGESTED,
     GME_DYNAMIC
-);
+)
 #endif
 
 #ifdef GME_DYNAMIC
diff --git a/src/decoder_mpg123.c b/src/decoder_mpg123.c
index 2c612546..75f0e780 100644
--- a/src/decoder_mpg123.c
+++ b/src/decoder_mpg123.c
@@ -29,7 +29,7 @@ SDL_ELF_NOTE_DLOPEN(
     "Support for MP3 audio using mpg123",
     SDL_ELF_NOTE_DLOPEN_PRIORITY_SUGGESTED,
     MPG123_DYNAMIC
-);
+)
 #endif
 
 #define MPG123_ENUM_API /* for mpg123_param() */
diff --git a/src/decoder_opus.c b/src/decoder_opus.c
index f767d0c0..7be8a890 100644
--- a/src/decoder_opus.c
+++ b/src/decoder_opus.c
@@ -33,7 +33,7 @@ SDL_ELF_NOTE_DLOPEN(
     "Support for OPUS audio using opusfile",
     SDL_ELF_NOTE_DLOPEN_PRIORITY_SUGGESTED,
     OPUS_DYNAMIC
-);
+)
 #endif
 
 #ifdef OPUS_DYNAMIC
diff --git a/src/decoder_vorbis.c b/src/decoder_vorbis.c
index 35b8b8be..31f15262 100644
--- a/src/decoder_vorbis.c
+++ b/src/decoder_vorbis.c
@@ -40,7 +40,7 @@ SDL_ELF_NOTE_DLOPEN(
     "Support for VORBIS audio", // vorbisfile or tremor
     SDL_ELF_NOTE_DLOPEN_PRIORITY_SUGGESTED,
     VORBIS_DYNAMIC
-);
+)
 #endif
 
 #ifdef VORBIS_DYNAMIC
diff --git a/src/decoder_wavpack.c b/src/decoder_wavpack.c
index eb87fd2e..deb122f3 100644
--- a/src/decoder_wavpack.c
+++ b/src/decoder_wavpack.c
@@ -31,7 +31,7 @@ SDL_ELF_NOTE_DLOPEN(
     "Support for WAVPACK audio using WavPack",
     SDL_ELF_NOTE_DLOPEN_PRIORITY_SUGGESTED,
     WAVPACK_DYNAMIC
-);
+)
 #endif
 
 #define WAVPACK_DBG 0
diff --git a/src/decoder_xmp.c b/src/decoder_xmp.c
index d8939840..7c7ca94d 100644
--- a/src/decoder_xmp.c
+++ b/src/decoder_xmp.c
@@ -29,7 +29,7 @@ SDL_ELF_NOTE_DLOPEN(
     "Support for MIDI audio using libxmp",
     SDL_ELF_NOTE_DLOPEN_PRIORITY_SUGGESTED,
     XMP_DYNAMIC
-);
+)
 #endif
 
 #ifdef LIBXMP_HEADER