Reacted on compiler warning

This commit is contained in:
Thomas Schmitt 2008-08-17 22:14:50 +00:00
parent 1d1f3a2265
commit 552911da11
3 changed files with 3 additions and 2 deletions

View File

@ -408,6 +408,7 @@ Can serve growisofs if started as xorrisofs, genisofs, mkisofs, genisoimage
<UL> <UL>
<LI>Included libburn has enhanced Linux drive access and listing code</LI> <LI>Included libburn has enhanced Linux drive access and listing code</LI>
<LI>New option -check_media</LI> <LI>New option -check_media</LI>
<LI>New -find test -damaged, new -find action "report_damage"</LI>
<!-- <!--
<LI>- none yet -</LI> <LI>- none yet -</LI>
--> -->

View File

@ -1 +1 @@
#define Xorriso_timestamP "2008.08.17.220043" #define Xorriso_timestamP "2008.08.17.221350"

View File

@ -5566,7 +5566,7 @@ int Xorriso_file_eval_damage(struct XorrisO *xorriso, IsoNode *node,
int flag) int flag)
{ {
int start_lba, end_lba, i, sectors, sector_size, damaged= 0, ret; int start_lba, end_lba, i, sectors, sector_size, damaged= 0, ret;
int next_good_lba, first_bad_lba= -1; int next_good_lba= -1, first_bad_lba= -1;
off_t size= 0; off_t size= 0;
struct SectorbitmaP *map; struct SectorbitmaP *map;