]> git.sesse.net Git - vlc/blobdiff - include/vlc_variables.h
Make vlc_value_t.i_int 64-bits
[vlc] / include / vlc_variables.h
index 0a9d7057b20d214f23621cfc3c96b9c752c37c3d..b1c2b394e8614967320ebda2a3f3f47eda39aaf5 100644 (file)
@@ -188,7 +188,8 @@ VLC_EXPORT( int, var_TriggerCallback, ( vlc_object_t *, const char * ) );
  * \param psz_name The name of the variable
  * \param i The new integer value of this variable
  */
-static inline int var_SetInteger( vlc_object_t *p_obj, const char *psz_name, int i )
+static inline int var_SetInteger( vlc_object_t *p_obj, const char *psz_name,
+                                  int64_t i )
 {
     vlc_value_t val;
     val.i_int = i;