From 7742e4797f4772b6c3b18e2c4615fb2402480a81 Mon Sep 17 00:00:00 2001 From: "Ronald S. Bultje" Date: Mon, 1 Sep 2003 12:06:06 +0000 Subject: [PATCH] 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 --- gst/asfdemux/gstasfmux.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst/asfdemux/gstasfmux.c b/gst/asfdemux/gstasfmux.c index fecaa61cb5..7f3c711c36 100644 --- a/gst/asfdemux/gstasfmux.c +++ b/gst/asfdemux/gstasfmux.c @@ -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