Commit 23bdea50 authored by Antoine Cellerier's avatar Antoine Cellerier

compile fix

parent a4de52f8
...@@ -467,7 +467,7 @@ vlc_bool_t vlc_reduce( unsigned *pi_dst_nom, unsigned *pi_dst_den, ...@@ -467,7 +467,7 @@ vlc_bool_t vlc_reduce( unsigned *pi_dst_nom, unsigned *pi_dst_den,
uint64_t i_nom, uint64_t i_den, uint64_t i_max ) uint64_t i_nom, uint64_t i_den, uint64_t i_max )
{ {
vlc_bool_t b_exact = 1; vlc_bool_t b_exact = 1;
uint64_t u_gcd; int64_t i_gcd;
if( i_den == 0 ) if( i_den == 0 )
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment