mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-09 19:09:41 +00:00
Fix compile warning due to integer overflow on what should be a 64bit uint
Original commit message from CVS: Fix compile warning due to integer overflow on what should be a 64bit uint
This commit is contained in:
parent
55887eaeff
commit
7742e4797f
1 changed files with 1 additions and 1 deletions
|
@ -781,7 +781,7 @@ static void
|
|||
gst_asfmux_put_time (GstBuffer *packet,
|
||||
guint64 time)
|
||||
{
|
||||
gst_asfmux_put_le64 (packet, time + 116444736000000000);
|
||||
gst_asfmux_put_le64 (packet, time + 116444736000000000LLU);
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
Loading…
Reference in a new issue