1
0
Fork 0
forked from len0rd/rockbox

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

@ -169,7 +169,7 @@ static int arg_callback(char argchar, const char **parameter, void *userdata)
{
pfp->tree_attr = (num)&FILE_ATTR_MASK;
pfp->flags |= FIND_ATTRIB;
logf ("Attrib: Val: 0x%x\n", (uint32_t)num);
logf("Attrib: Val: 0x%lx\n", (uint32_t)num);
logf("ate %d chars\n", ret);
}
break;