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:
Ronald S. Bultje 2003-09-01 12:06:06 +00:00
parent 55887eaeff
commit 7742e4797f

View file

@ -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