mirror of
https://github.com/claunia/flac.git
synced 2025-12-16 18:54:26 +00:00
Correct printf specifiers to unsigned int where needed
This commit is contained in:
committed by
Erik de Castro Lopo
parent
a9d9f4d353
commit
a3d8927c2b
@@ -126,7 +126,7 @@ FLAC__StreamDecoderWriteStatus write_callback(const FLAC__StreamDecoder *decoder
|
||||
return FLAC__STREAM_DECODER_WRITE_STATUS_ABORT;
|
||||
}
|
||||
if(frame->header.channels != 2) {
|
||||
fprintf(stderr, "ERROR: This frame contains %d channels (should be 2)\n", frame->header.channels);
|
||||
fprintf(stderr, "ERROR: This frame contains %u channels (should be 2)\n", frame->header.channels);
|
||||
return FLAC__STREAM_DECODER_WRITE_STATUS_ABORT;
|
||||
}
|
||||
if(buffer [0] == NULL) {
|
||||
|
||||
Reference in New Issue
Block a user