1
0
Fork 0
forked from len0rd/rockbox

misc: Fix some compile warnings when logf is enabled

Change-Id: I67b611cbbbe33113853f36da5047ba799f1dda5d
This commit is contained in:
Solomon Peachy 2024-11-12 08:06:07 -05:00
parent 3d1dcebebb
commit 461704f803
2 changed files with 13 additions and 13 deletions

View file

@ -332,7 +332,7 @@ int scrobbler_init_cache(void)
if (gCache.size < reqsz)
{
logf("SCROBBLER: OOM , %ld < req:%ld", gCache.size, reqsz);
logf("SCROBBLER: OOM , %ld < req:%zu", gCache.size, reqsz);
return -1;
}
gCache.force_flush = true;
@ -381,7 +381,7 @@ static bool track_is_unique(uint32_t hash1, uint32_t hash2)
/* Found in MRU */
if ((i.hash1 == hash1) && (i.hash2 == hash2))
{
logf("SCROBBLER: hash [%x, %x] found in MRU @ %d", i.hash1, i.hash2, mru);
logf("SCROBBLER: hash [%lx, %lx] found in MRU @ %d", i.hash1, i.hash2, mru);
goto Found;
}
}
@ -395,11 +395,11 @@ static bool track_is_unique(uint32_t hash1, uint32_t hash2)
}
else
{
logf("SCROBBLER: hash [%x, %x] evicted from MRU", i.hash1, i.hash2);
logf("SCROBBLER: hash [%lx, %lx] evicted from MRU", i.hash1, i.hash2);
}
i = (struct hash64){.hash1 = hash1, .hash2 = hash2};
logf("SCROBBLER: hash [%x, %x] added to MRU[%d]", i.hash1, i.hash2, mru_len);
logf("SCROBBLER: hash [%lx, %lx] added to MRU[%d]", i.hash1, i.hash2, mru_len);
Found:
@ -475,7 +475,7 @@ static void scrobbler_write_cache(void)
for (i = 0; i < entries && pos < used; i++)
{
logf("SCROBBLER: write %d read pos [%ld]", i, pos);
logf("SCROBBLER: write %d read pos [%zu]", i, pos);
struct cache_entry *entry = (struct cache_entry*)&gCache.buf[pos];
@ -484,7 +484,7 @@ static void scrobbler_write_cache(void)
prev_crc = crc;
len = rb->strlen(entry->buf);
logf("SCROBBLER: write entry %d sz [%ld] len [%ld]", i, entry_sz, len);
logf("SCROBBLER: write entry %d sz [%zu] len [%zu]", i, entry_sz, len);
if (len != entry->len || crc != entry->crc) /* the entry is corrupted */
{
@ -591,7 +591,7 @@ static void scrobbler_add_to_cache(const struct mp3entry *id)
if ( gCache.pos > SCROBBLER_MAX_CACHE - SCROBBLER_CACHE_LEN )
scrobbler_write_cache();
logf("SCROBBLER: add_to_cache[%d] write pos[%ld]", gCache.entries, gCache.pos);
logf("SCROBBLER: add_to_cache[%d] write pos[%zu]", gCache.entries, gCache.pos);
/* use prev_crc to allow whole buffer to be checked for consistency */
static uint32_t prev_crc = 0x0;
if (gCache.pos == 0)
@ -641,7 +641,7 @@ static void scrobbler_add_to_cache(const struct mp3entry *id)
size_t entry_sz = cache_get_entry_size(ret);
logf("SCROBBLER: Added (#%d) sz[%ld] len[%d], %s",
logf("SCROBBLER: Added (#%d) sz[%zu] len[%d], %s",
gCache.entries, entry_sz, ret, entry->buf);
gCache.entries++;

View file

@ -690,7 +690,7 @@ int touchpad_set_buttonlights(unsigned int led_mask, char brightness)
void syn_info(void)
{
int i, val;
int data[8];
char data[8];
logf("syn_info...");