Small correction of commit 646d15a

This commit is contained in:
Thomas Schmitt 2024-04-19 12:52:57 +02:00
parent fb23fe1446
commit 7f9d140d0d
2 changed files with 2 additions and 2 deletions

View File

@ -137,7 +137,7 @@ int isoburn_get_attached_start_lba(struct burn_drive *d)
off_t ret; off_t ret;
ret= isoburn_get_attached_start_lba_v2(d); ret= isoburn_get_attached_start_lba_v2(d);
if(ret >= 0 && ret < 0x7fffffff) if(ret >= 0 && ret <= 0x7fffffff)
return((int) ret); return((int) ret);
return(-1); return(-1);
} }

View File

@ -1 +1 @@
#define Xorriso_timestamP "2024.04.03.161444" #define Xorriso_timestamP "2024.04.19.105210"