mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2025-01-04 09:15:05 +00:00
Fix compiler warnings/misbehaviour.
This commit is contained in:
parent
b4921cbed0
commit
ff7a5f910e
@ -456,7 +456,7 @@ int64_t
|
||||
get_chapter_uid(KaxChapterAtom &atom) {
|
||||
KaxChapterUID *uid = FINDFIRST(&atom, KaxChapterUID);
|
||||
|
||||
return uid == NULL ? -1 : uint64(*uid);
|
||||
return uid == NULL ? -1 : int64_t(uint64(*uid));
|
||||
}
|
||||
|
||||
/** \brief Add missing mandatory elements
|
||||
|
Loading…
Reference in New Issue
Block a user