another cast bites the dust

Original commit message from CVS:
another cast bites the dust
This commit is contained in:
Thomas Vander Stichele 2005-10-10 16:45:45 +00:00
parent e2a946395a
commit 8808565b44

View file

@ -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));
}
/* -----------------------------------------------------