More hunt for "allow to"

This commit is contained in:
2015-09-01 06:59:24 +00:00
parent 7651adf8e2
commit 9992ddf00c
17 changed files with 80 additions and 80 deletions

View File

@ -101,7 +101,7 @@ static int current_profile= -1;
static char current_profile_name[80]= {""};
/* Some in-advance definitions to allow a more comprehensive ordering
/* Some in-advance definitions make possible a more comprehensive ordering
of the functions and their explanations in here */
int libburner_aquire_by_adr(char *drive_adr);
int libburner_aquire_by_driveno(int *drive_no);
@ -434,7 +434,7 @@ int libburner_format(struct burn_drive *drive)
In case of external signals expect abort handling of an ongoing burn to
last up to a minute. Wait the normal burning timespan before any kill -9.
For simplicity, this function allows memory leaks in case of failure.
For simplicity, this function has memory leaks in case of failure.
In apps which do not abort immediately, one should clean up better.
*/
int libburner_payload(struct burn_drive *drive,

View File

@ -71,7 +71,7 @@ static unsigned int drive_count;
static int drive_is_grabbed = 0;
/* Some in-advance definitions to allow a more comprehensive ordering
/* Some in-advance definitions to make possible a more comprehensive ordering
of the functions and their explanations in here */
int telltoc_aquire_by_adr(char *drive_adr);
int telltoc_aquire_by_driveno(int *drive_no, int silent);
@ -296,15 +296,15 @@ int telltoc_media(struct burn_drive *drive)
/* Media appears writeable */
printf("Write multi : ");
printf("%s multi-session , ",
caps->multi_session == 1 ? "allows" : "prohibits");
caps->multi_session == 1 ? "offers" : "cannot do");
if (caps->multi_track)
printf("allows multiple tracks\n");
printf("offers multiple tracks\n");
else
printf("enforces single track\n");
printf("offers only single track\n");
printf("Write start : ");
if (caps->start_adr == 1)
printf(
"allows addresses [%.f , %.f]s , alignment=%.fs\n",
"offers addresses [%.f , %.f]s , alignment=%.fs\n",
(double) caps->start_range_low / 2048 ,
(double) caps->start_range_high / 2048 ,
(double) caps->start_alignment / 2048 );