diff options
author | Matthew Gregan <[email protected]> | 2021-07-28 09:31:57 +1200 |
---|---|---|
committer | Matthew Gregan <[email protected]> | 2021-07-28 09:31:57 +1200 |
commit | f59f5ac47655cef37a4dae1fca5507f1653b7111 (patch) | |
tree | 7444a9b0fbfc34e673d8f1d032d72e6dc7d3be57 | |
parent | 28f2d92c3d2199e90d09c9ffd02a738616108c7c (diff) | |
download | cubeb-f59f5ac47655cef37a4dae1fca5507f1653b7111.tar.gz cubeb-f59f5ac47655cef37a4dae1fca5507f1653b7111.zip |
winmm: Fix sorting of mm*.h headers.
-rw-r--r-- | src/cubeb_winmm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cubeb_winmm.c b/src/cubeb_winmm.c index 3480d3f..fcf7201 100644 --- a/src/cubeb_winmm.c +++ b/src/cubeb_winmm.c @@ -19,8 +19,8 @@ /* clang-format off */ /* These need to be included after windows.h */ -#include <mmsystem.h> #include <mmreg.h> +#include <mmsystem.h> /* clang-format on */ /* This is missing from the MinGW headers. Use a safe fallback. */ |