Reacted on false compiler warning about potentially unused variable

This commit is contained in:
Thomas Schmitt 2007-08-25 09:10:48 +00:00
parent 3e432c0341
commit 27f1c2604e
1 changed files with 2 additions and 1 deletions

View File

@ -580,7 +580,8 @@ ex:;
int telltoc_read_and_print(struct burn_drive *drive,
int start_sector, int sector_count, char *raw_file, int encoding)
{
int ret, j, i, request = 16, done, lbas = 0, final_cd_try = -1, todo;
int j, i, request = 16, done, lbas = 0, final_cd_try = -1, todo;
int ret = 0;
char buf[16 * 2048], line[81];
off_t data_count, total_count= 0, last_reported_count= 0;
struct stat stbuf;