A modern Music Player Daemon based on Rockbox open source high quality audio player
libadwaita audio rust zig deno mpris rockbox mpd
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

sendfirm: fix some minor issues

This patches some compile warnings and also makes it work correctly
with modern mingw64.

Change-Id: I8cd292bc989ae04bbaa1d7149d58d6d833a51c0a

+3 -2
+2 -2
utils/MTP/Makefile
··· 11 11 gcc $(EXTRA_CFLAGS) $(CFLAGS) -o $(OUTPUT) sendfirm.c $(LIBS) 12 12 13 13 $(OUTPUT).exe: sendfirm_win.c 14 - mingw32-gcc $(CFLAGS) -o $(OUTPUT).exe sendfirm_win.c MTP_DLL.dll 14 + i686-w64-mingw32-gcc $(CFLAGS) -o $(OUTPUT).exe sendfirm_win.c MTP_DLL.dll 15 15 16 16 clean: 17 - rm -f $(OUTPUT) 17 + rm -f $(OUTPUT) $(OUTPUT).exe
+1
utils/MTP/sendfirm.c
··· 26 26 #define _LARGEFILE_SOURCE 27 27 #define _LARGEFILE64_SOURCE 28 28 29 + #include <stdlib.h> 29 30 #include <string.h> 30 31 #include <libgen.h> 31 32 #include <sys/stat.h>