From bcbc2b2b98b134efcd2644aad5b0379cde54803e Mon Sep 17 00:00:00 2001 From: Tim-Philipp Müller Date: Sun, 9 Apr 2006 13:52:03 +0000 Subject: gst/matroska/ebml-read.c: Can't just replace 1LL with 1L here just because MSVC doesn't support it, as it might lead ... Original commit message from CVS: * gst/matroska/ebml-read.c: (gst_ebml_read_sint): Can't just replace 1LL with 1L here just because MSVC doesn't support it, as it might lead to incorrect results when doing the bitshifting here. Using GLib's G_GUINT64_CONSTANT() macro to force a 64-bit constant in a way that all compilers are happy with. --- gst/matroska/ebml-read.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gst/matroska/ebml-read.c') diff --git a/gst/matroska/ebml-read.c b/gst/matroska/ebml-read.c index 24f0f3f6..10c35123 100644 --- a/gst/matroska/ebml-read.c +++ b/gst/matroska/ebml-read.c @@ -507,7 +507,7 @@ gst_ebml_read_sint (GstEbmlRead * ebml, guint32 * id, gint64 * num) /* make signed */ if (negative) { - *num = *num - (1L << ((8 * size) - 1)); + *num = *num - (G_GUINT64_CONSTANT (1) << ((8 * size) - 1)); } gst_buffer_unref (buf); -- cgit