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.

misc: Fix some assorted compiler warnings

Change-Id: Ibc4aac79e6fce92ad4414ed50122c2d4d6295f89

+7 -5
+3 -3
apps/codec_thread.c
··· 127 127 switch (ev.id) 128 128 { 129 129 case Q_CODEC_SEEK: 130 - LOGFQUEUE("codec - Q_CODEC_SEEK", ev.id); 130 + LOGFQUEUE("codec - Q_CODEC_SEEK %ld", ev.id); 131 131 return -1; 132 132 case Q_CODEC_PAUSE: 133 - LOGFQUEUE("codec - Q_CODEC_PAUSE", ev.id); 133 + LOGFQUEUE("codec - Q_CODEC_PAUSE %ld", ev.id); 134 134 return -1; 135 135 case Q_CODEC_STOP: 136 - LOGFQUEUE("codec - Q_CODEC_STOP", ev.id); 136 + LOGFQUEUE("codec - Q_CODEC_STOP %ld", ev.id); 137 137 return -1; 138 138 } 139 139
+1
firmware/storage.c
··· 694 694 #if (CONFIG_STORAGE & STORAGE_SD) 695 695 //t=sd_spinup_time(); 696 696 //if (t>max) max=t; 697 + (void)t; 697 698 #endif 698 699 699 700 #if (CONFIG_STORAGE & STORAGE_NAND)
+1 -1
tools/rbspeex/rbspeexdec.c
··· 70 70 insize = ftell(fin); 71 71 fseek(fin, 0, SEEK_SET); 72 72 indata = malloc(insize); 73 - fread(indata, 1, insize, fin); 73 + insize = fread(indata, 1, insize, fin); 74 74 fclose(fin); 75 75 76 76 /* fill in wav header */
+2 -1
tools/voicefont.c
··· 103 103 memset(voiceonly, 0, sizeof(voiceonly)); 104 104 while (!feof(voicefontids)) 105 105 { 106 - fgets(line, sizeof(line), voicefontids); 106 + if (!fgets(line, sizeof(line), voicefontids)) 107 + break; 107 108 if (line[0] == '#') /* comment */ 108 109 continue; 109 110