1
0
Fork 0
forked from len0rd/rockbox

test_codec: print crc's that start with 0 properly.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26890 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Nils Wallménius 2010-06-17 15:27:42 +00:00
parent 7afea91560
commit 10719ef649

View file

@ -676,7 +676,7 @@ static enum plugin_status test_track(const char* filename)
if (checksum)
{
rb->snprintf(str, sizeof(str), "CRC32 - %x", (unsigned)crc32);
rb->snprintf(str, sizeof(str), "CRC32 - %08x", (unsigned)crc32);
log_text(str,true);
}
else if (wavinfo.fd < 0)