Corrected harmless type declaration flaws

This commit is contained in:
Thomas Schmitt 2007-08-17 08:19:30 +00:00
parent c7256fdc35
commit d2c9236c25
2 changed files with 11 additions and 11 deletions

View File

@ -1 +1 @@
#define Cdrskin_timestamP "2007.08.12.152937" #define Cdrskin_timestamP "2007.08.17.081901"

View File

@ -114,7 +114,7 @@ struct burn_format_descr {
off_t size; off_t size;
/* the Type Dependent Parameter (usually the write alignment size) */ /* the Type Dependent Parameter (usually the write alignment size) */
unsigned tdp; unsigned int tdp;
}; };
@ -229,15 +229,15 @@ struct burn_drive
int pbf_altered; int pbf_altered;
int wait_for_buffer_free; int wait_for_buffer_free;
int nominal_write_speed; int nominal_write_speed;
unsigned wfb_min_usec; unsigned int wfb_min_usec;
unsigned wfb_max_usec; unsigned int wfb_max_usec;
unsigned wfb_timeout_sec; unsigned int wfb_timeout_sec;
unsigned wfb_min_percent; unsigned int wfb_min_percent;
unsigned wfb_max_percent; unsigned int wfb_max_percent;
unsigned pessimistic_writes; unsigned int pessimistic_writes;
unsigned waited_writes; unsigned int waited_writes;
unsigned waited_tries; unsigned int waited_tries;
unsigned waited_usec; unsigned int waited_usec;
volatile int cancel; volatile int cancel;
volatile enum burn_drive_status busy; volatile enum burn_drive_status busy;