]> git.sesse.net Git - vlc/blobdiff - modules/access/dv.c
A couple more obvious missing (int64_t) cast fixes.
[vlc] / modules / access / dv.c
index f611a04f4423fdfbda47ffb4340cb8520c6bbcd5..fe4dfa74ff6bae561fa21ecea5bf417b71198389 100644 (file)
@@ -16,9 +16,9 @@
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
+ * You should have received a copy of the GNU General Public License along
+ * with this program; if not, write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  *****************************************************************************/
 
 /*****************************************************************************
@@ -312,7 +312,7 @@ static int Control( access_t *p_access, int i_query, va_list args )
 
         case ACCESS_GET_PTS_DELAY:
             pi_64 = (int64_t*)va_arg( args, int64_t * );
-            *pi_64 = var_GetInteger( p_access, "dv-caching" ) * 1000;
+            *pi_64 = (int64_t)var_GetInteger( p_access, "dv-caching" ) * 1000;
             break;
 
         /* */