Rockbox open source high quality audio player as a Music Player Daemon
mpris rockbox mpd libadwaita audio rust zig deno
2
fork

Configure Feed

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

Fix sea of errors introduced in cde144233b8163dec69a86a757a0d37801ffe14a

I swear I compiled this successfully; clearly I had not.

Change-Id: Id604abeeeb895aa9c61acaad261b7190f0140089

+1 -1
+1 -1
firmware/include/gcc_extensions.h
··· 24 24 /* Support for some GCC extensions */ 25 25 26 26 /* Compile time check of format for printf/scanf like functions */ 27 - #ifdef __GNUC__ && __GNUC__ != 7 27 + #if defined(__GNUC__) && (__GNUC__ != 7) 28 28 #define ATTRIBUTE_PRINTF(fmt, arg1) __attribute__( ( format( printf, fmt, arg1 ) ) ) 29 29 #define ATTRIBUTE_SCANF(fmt, arg1) __attribute__( ( format( scanf, fmt, arg1 ) ) ) 30 30 #else