Skip to content
Snippets Groups Projects
Commit 2a1870a5 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont
Browse files

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
No related branches found
No related tags found
No related merge requests found
......@@ -114,7 +114,7 @@ static int vlclua_tovalue( lua_State *L, int i_type, vlc_value_t *val )
case VLC_VAR_TIME:
{
double f = luaL_checknumber( L, -1 );
val->i_time = (vlc_int64_t)(f*1000000.);
val->i_time = (int64_t)(f*1000000.);
}
break;
case VLC_VAR_ADDRESS:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment