logf: Correct two format string problems in plugins

Change-Id: I67ab14b2079de8fb660aaa5c1391db053aad2cc5
This commit is contained in:
Solomon Peachy 2024-11-25 09:08:32 -05:00
parent 87e55baaad
commit 03555cc7b5
2 changed files with 2 additions and 2 deletions

View file

@ -332,7 +332,7 @@ int scrobbler_init_cache(void)
if (gCache.size < reqsz)
{
logf("SCROBBLER: OOM , %ld < req:%zu", gCache.size, reqsz);
logf("SCROBBLER: OOM , %zu < req:%zu", gCache.size, reqsz);
return -1;
}
gCache.force_flush = true;