mirror of
https://github.com/samsonjs/media.git
synced 2026-03-25 09:25:53 +00:00
Update error message to be more specific
PiperOrigin-RevId: 629405290
This commit is contained in:
parent
6956d8099a
commit
72013446c4
1 changed files with 1 additions and 1 deletions
|
|
@ -769,7 +769,7 @@ import java.util.Locale;
|
|||
|
||||
for (int i = 0; i < writtenChunkOffsets.size(); i++) {
|
||||
long chunkOffset = writtenChunkOffsets.get(i);
|
||||
checkState(chunkOffset <= UNSIGNED_INT_MAX_VALUE, "Only 32-bit offset is allowed");
|
||||
checkState(chunkOffset <= UNSIGNED_INT_MAX_VALUE, "Only 32-bit chunk offset is allowed");
|
||||
contents.putInt((int) chunkOffset); // chunk_offset; unsigned int(32)
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue