mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2025-01-04 09:15:05 +00:00
Avoid a compiler warning.
This commit is contained in:
parent
a004bdb233
commit
3b4a0f45ab
@ -54,8 +54,7 @@ fhe_read_cb(const FLAC__StreamDecoder *decoder,
|
||||
}
|
||||
|
||||
if (*bytes < op.bytes)
|
||||
mxerror(FPFX "bytes (%u) < op.bytes (%ld). Could not read the FLAC "
|
||||
"headers.\n", *bytes, op.bytes);
|
||||
mxerror(FPFX "bytes (%u) < op.bytes (%ld). Could not read the FLAC headers.\n", (unsigned int)*bytes, (long)op.bytes);
|
||||
memcpy(buffer, op.packet, op.bytes);
|
||||
*bytes = op.bytes;
|
||||
fhe->num_packets++;
|
||||
|
Loading…
Reference in New Issue
Block a user