Clearer semaphore error messages, removed some legacy code, fixed a compile warning or two.

This commit is contained in:
Thulinma 2014-06-20 10:36:26 +02:00
parent e090a9368d
commit 43078c5c68
3 changed files with 3 additions and 6 deletions

View file

@ -101,7 +101,7 @@ namespace MP4 {
} else if (size == 0) {
fseek(newData, 0, SEEK_END);
}
DEBUG_MSG(DLVL_DEVEL, "skipping size 0x%0.8X", size);
DEBUG_MSG(DLVL_DEVEL, "skipping size 0x%0.8lX", size);
if (fseek(newData, pos + size, SEEK_SET) == 0) {
return true;
} else {