Commit 2a1870a5 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Use int64_t directly within plugins rather than vlc_int64_t

I wonder why we need this (in libvlc-control) by the way...?
parent 66732586
...@@ -114,7 +114,7 @@ static int vlclua_tovalue( lua_State *L, int i_type, vlc_value_t *val ) ...@@ -114,7 +114,7 @@ static int vlclua_tovalue( lua_State *L, int i_type, vlc_value_t *val )
case VLC_VAR_TIME: case VLC_VAR_TIME:
{ {
double f = luaL_checknumber( L, -1 ); double f = luaL_checknumber( L, -1 );
val->i_time = (vlc_int64_t)(f*1000000.); val->i_time = (int64_t)(f*1000000.);
} }
break; break;
case VLC_VAR_ADDRESS: case VLC_VAR_ADDRESS:
......
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