Commit f4dd0b1c authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

CDDA: fix printf format

parent 2d61d6fb
......@@ -677,7 +677,7 @@ static cddb_disc_t *GetCDDBInfo( access_t *p_access, int i_titles, int *p_sector
msg_Dbg( p_access, "Track %i offset: %i", i, p_sectors[i] + 150 );
}
msg_Dbg( p_access, "Total length: %i", i_length/1000000 );
msg_Dbg( p_access, "Total length: %i", (int)(i_length/1000000) );
cddb_disc_set_length( p_disc, (int)(i_length/1000000) );
if( !cddb_disc_calc_discid( p_disc ) )
......
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