Changed a byte size variable from int to off_t. Currently only used with CD DAO and thus not really necessary.

This commit is contained in:
Thomas Schmitt 2024-02-26 15:58:36 +01:00
parent ddebbf1b60
commit 84e8efeb0a
2 changed files with 2 additions and 2 deletions

View File

@ -1 +1 @@
#define Cdrskin_timestamP "2024.02.26.145623"
#define Cdrskin_timestamP "2024.02.26.145811"

View File

@ -668,7 +668,7 @@ int burn_track_is_data_done(struct burn_track *t)
int burn_track_get_shortage(struct burn_track *t)
{
int size;
off_t size;
int seclen;
seclen = burn_sector_length(t->mode);