mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-24 09:10:36 +00:00
another cast bites the dust
Original commit message from CVS: another cast bites the dust
This commit is contained in:
parent
e2a946395a
commit
8808565b44
1 changed files with 1 additions and 1 deletions
|
@ -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));
|
||||
}
|
||||
|
||||
/* -----------------------------------------------------
|
||||
|
|
Loading…
Reference in a new issue