]> git.sesse.net Git - vlc/blobdiff - modules/access/smb.c
Remove legacy casts
[vlc] / modules / access / smb.c
index c44394ce3ed90fd572f5517dc68294838dadf9c3..abe67a7b237aa501c3a87bc0b4dea12ecf139863 100644 (file)
@@ -335,7 +335,7 @@ static int Control( access_t *p_access, int i_query, va_list args )
 
     case ACCESS_GET_PTS_DELAY:
         *va_arg( args, int64_t * )
-                  = (int64_t)var_GetInteger( p_access, "smb-caching" ) * 1000;
+                  = var_GetInteger( p_access, "smb-caching" ) * 1000;
         break;
 
     case ACCESS_SET_PAUSE_STATE: