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 yellows and checkwps.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29328 a1c6a512-1295-4272-9138-f99709370657

+5 -3
+1
apps/misc.c
··· 26 26 #include "string-extra.h" 27 27 #include "config.h" 28 28 #include "misc.h" 29 + #include "system.h" 29 30 #include "lcd.h" 30 31 #include "file.h" 31 32 #include "filefuncs.h"
-1
apps/misc.h
··· 24 24 #include <stdbool.h> 25 25 #include <inttypes.h> 26 26 #include "config.h" 27 - #include "system.h" 28 27 #include "screen_access.h" 29 28 30 29 extern const unsigned char * const byte_units[];
+1 -1
firmware/export/thread.h
··· 150 150 uint32_t start; /* 44 - Thread start address, or NULL when started */ 151 151 }; 152 152 #endif /* CONFIG_CPU */ 153 - #elif (CONFIG_PLATFORM & PLATFORM_HOSTED) 153 + #elif (CONFIG_PLATFORM & PLATFORM_HOSTED) || defined(__PCTOOL__) 154 154 #ifndef HAVE_SDL_THREADS 155 155 struct regs 156 156 {
+1 -1
firmware/thread.c
··· 2385 2385 const char *fmt = "%s"; 2386 2386 if (name == NULL IF_COP(|| name == THREAD_DESTRUCT) || *name == '\0') 2387 2387 { 2388 - name = (const char *)(unsigned int)thread->id; 2388 + name = (const char *)(uintptr_t)thread->id; 2389 2389 fmt = "%04lX"; 2390 2390 } 2391 2391 snprintf(buffer, size, fmt, name);
+2
tools/configure
··· 170 170 #include <signal.h> 171 171 int main(int argc, char **argv) 172 172 { 173 + #ifndef NULL 173 174 #define NULL (void*)0 175 + #endif 174 176 sigaltstack(NULL, NULL); 175 177 return 0; 176 178 }