Changed some comments, reacted on harmless compiler warning

This commit is contained in:
Thomas Schmitt 2007-09-18 20:15:25 +00:00
parent e43ec2b295
commit c8e9249e9d
3 changed files with 6 additions and 4 deletions

View File

@ -1 +1 @@
#define Cdrskin_timestamP "2007.09.18.200454"
#define Cdrskin_timestamP "2007.09.18.201556"

View File

@ -43,7 +43,8 @@ void sbc_load(struct burn_drive *d)
d->issue_command(d, &c);
if (c.error)
return;
/* 5 minutes for loading. If this does not suffice then other commands
/* ts A70918 :
5 minutes for loading. If this does not suffice then other commands
shall fail righteously. */
spc_wait_unit_attention(d, 300, "START UNIT (+ LOAD)", 0);
}
@ -69,7 +70,7 @@ void sbc_eject(struct burn_drive *d)
d->issue_command(d, &c);
if (c.error)
return;
/* Wait long. A late eject could surprise or hurt user. */
/* ts A70918 : Wait long. A late eject could surprise or hurt user. */
spc_wait_unit_attention(d, 1800, "STOP UNIT (+ EJECT)", 0);
}
@ -95,6 +96,7 @@ int sbc_start_unit(struct burn_drive *d)
d->issue_command(d, &c);
if (c.error)
return 0;
/* ts A70918 : now asynchronous */
return spc_wait_unit_attention(d, 1800, "START UNIT", 0);
}

View File

@ -103,7 +103,7 @@ int spc_test_unit_ready(struct burn_drive *d)
int spc_wait_unit_attention(struct burn_drive *d, int max_sec, char *cmd_text,
int flag)
{
int i, ret, key, asc, ascq;
int i, ret = 1, key, asc, ascq;
char msg[160];
if (!(flag & 1))