Minor corrections to revisions 559 and 560

This commit is contained in:
Thomas Schmitt 2006-12-26 18:45:21 +00:00
parent 18ba02c2bb
commit cafad767a9
3 changed files with 4 additions and 3 deletions

View File

@ -1 +1 @@
#define Cdrskin_timestamP "2006.12.26.170459" #define Cdrskin_timestamP "2006.12.26.184321"

View File

@ -433,7 +433,7 @@ struct burn_speed_descriptor {
0 = misc , 1 = mode page 2Ah , 2 = ACh GET PERFORMANCE */ 0 = misc , 1 = mode page 2Ah , 2 = ACh GET PERFORMANCE */
int source; int source;
/** The media type that was reported as current at the time of report /** The media type that was current at the time of report
-2 = state unknown, -1 = no media was loaded , else see -2 = state unknown, -1 = no media was loaded , else see
burn_disc_get_profile() */ burn_disc_get_profile() */
int profile_loaded; int profile_loaded;
@ -443,7 +443,7 @@ struct burn_speed_descriptor {
i.e. 2352 raw bytes or 2048 data bytes. -1 = capacity unknown. */ i.e. 2352 raw bytes or 2048 data bytes. -1 = capacity unknown. */
int end_lba; int end_lba;
/** Write speed is given in 1000 bytes/s , 0 = invalid. The numbers /** Speed is given in 1000 bytes/s , 0 = invalid. The numbers
are supposed to be usable with burn_drive_set_speed() */ are supposed to be usable with burn_drive_set_speed() */
int write_speed; int write_speed;
int read_speed; int read_speed;

View File

@ -326,6 +326,7 @@ int telltoc_speedlist(struct burn_drive *drive)
printf(", %s", sd->profile_name); printf(", %s", sd->profile_name);
printf("\n"); printf("\n");
} }
burn_drive_free_speedlist(&speed_list);
return 1; return 1;
} }