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.

logf: Correct two format string problems in plugins

Change-Id: I67ab14b2079de8fb660aaa5c1391db053aad2cc5

+2 -2
+1 -1
apps/plugins/file_picker.c
··· 169 169 { 170 170 pfp->tree_attr = (num)&FILE_ATTR_MASK; 171 171 pfp->flags |= FIND_ATTRIB; 172 - logf ("Attrib: Val: 0x%x\n", (uint32_t)num); 172 + logf("Attrib: Val: 0x%lx\n", (uint32_t)num); 173 173 logf("ate %d chars\n", ret); 174 174 } 175 175 break;
+1 -1
apps/plugins/lastfm_scrobbler.c
··· 332 332 333 333 if (gCache.size < reqsz) 334 334 { 335 - logf("SCROBBLER: OOM , %ld < req:%zu", gCache.size, reqsz); 335 + logf("SCROBBLER: OOM , %zu < req:%zu", gCache.size, reqsz); 336 336 return -1; 337 337 } 338 338 gCache.force_flush = true;