BMetaData: Fix GCC7 build.

This commit is contained in:
Augustin Cavalier 2018-11-18 13:04:10 -05:00
parent 9f2e5521fa
commit 966c60f355

View File

@ -17,7 +17,7 @@ key_to_string(uint32 key)
{
char buf[sizeof(char) * sizeof(uint32) * 4 + 1];
if (buf) {
sprintf(buf, "%"B_PRId32, key);
sprintf(buf, "%" B_PRId32, key);
}
BString ret(buf);
ret.Prepend("codec:metadata:");