Commit ff690fdb authored by Rémi Duraffort's avatar Rémi Duraffort

access_cdda: use INT64_C

parent e0cbcf57
......@@ -356,7 +356,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, "cdda-caching" ) * 1000;
*pi_64 = var_GetInteger( p_access, "cdda-caching" ) * INT64_C(1000);
break;
case ACCESS_SET_PAUSE_STATE:
......@@ -373,7 +373,6 @@ static int Control( access_t *p_access, int i_query, va_list args )
default:
msg_Warn( p_access, "unimplemented query in control" );
return VLC_EGENERIC;
}
return VLC_SUCCESS;
}
......
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