From 8808565b44ba3d1465f08409abb2b483d5bead9f Mon Sep 17 00:00:00 2001 From: Thomas Vander Stichele Date: Mon, 10 Oct 2005 16:45:45 +0000 Subject: [PATCH] another cast bites the dust Original commit message from CVS: another cast bites the dust --- gst/gstutils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst/gstutils.c b/gst/gstutils.c index 697b6181c7..16b7301060 100644 --- a/gst/gstutils.c +++ b/gst/gstutils.c @@ -328,7 +328,7 @@ guint64 gst_util_uint64_scale (guint64 val, guint64 num, guint64 denom) { /* implement me with fixed point, if you care */ - return val * ((guint64_to_gdouble (num)) / denom); + return val * ((guint64_to_gdouble (num)) / guint64_to_gdouble (denom)); } /* -----------------------------------------------------