Corrected falsely computed default setting of -file_size_limit

This commit is contained in:
2008-09-16 18:52:58 +00:00
parent aecab9aa89
commit 5f469fb305
3 changed files with 8 additions and 5 deletions

View File

@ -66,9 +66,10 @@ struct SectorbitmaP; /* Distiniction between valid and invalid sectors */
/* Default setting for the size limit of single data files:
100 extents with 4 GB - 2 kB each = 400 GB - 800 kB */
100 extents with 4 GB - 2 kB each = 400 GB - 200 kB
*/
#define Xorriso_default_file_size_limiT \
(((off_t) 400) * ((off_t) 1024*1024*1024) - (off_t) 819200)
(((off_t) 400) * ((off_t) 1024*1024*1024) - (off_t) 204800)
struct XorrisO { /* the global context of xorriso */
@ -657,6 +658,8 @@ int Findjob_get_start_path(struct FindjoB *o, char **start_path, int flag);
int Findjob_get_lba_damage_filter(struct FindjoB *o, int *start_lba,
int *end_lba, int *damage_filter, int flag);
int Findjob_get_commit_filter(struct FindjoB *o, int *commit_filter, int flag);
struct SplitparT;