Removed tabs from the front of XXU: messages to make it fit the other

messages closer.  Added missing new line to the message about to many
scsi cd drives.
This commit is contained in:
Rodney W. Grimes
1993-08-06 12:11:52 +00:00
parent 2ea3f75bd2
commit 903a4691a3
3 changed files with 9 additions and 9 deletions
+2 -2
View File
@@ -13,7 +13,7 @@
* functioning of this software in any circumstances. * functioning of this software in any circumstances.
* *
*/ */
static char rev[] = "$Revision: 1.3 $"; static char rev[] = "$Revision: 1.2 $";
/* /*
* Ported to run under 386BSD by Julian Elischer (julian@tfs.com) Sept 1992 * Ported to run under 386BSD by Julian Elischer (julian@tfs.com) Sept 1992
@@ -126,7 +126,7 @@ struct scsi_switch *scsi_switch;
\*******************************************************/ \*******************************************************/
if( unit >= NCD) if( unit >= NCD)
{ {
printf("Too many scsi CDs..(%d > %d) reconfigure kernel",(unit + 1),NCD); printf("Too many scsi CDs..(%d > %d) reconfigure kernel\n",(unit + 1),NCD);
return(0); return(0);
} }
/*******************************************************\ /*******************************************************\
+1 -1
View File
@@ -14,7 +14,7 @@
* *
*/ */
static char rev[] = "$Revision: 1.3 $"; static char rev[] = "$Revision: 1.2 $";
/* /*
* Ported to run under 386BSD by Julian Elischer (julian@tfs.com) Sept 1992 * Ported to run under 386BSD by Julian Elischer (julian@tfs.com) Sept 1992
+3 -3
View File
@@ -240,17 +240,17 @@ struct scsi_switch *scsi_switch;
{ {
if(st_test_ready(unit,SCSI_NOSLEEP | SCSI_NOMASK | SCSI_SILENT)) if(st_test_ready(unit,SCSI_NOSLEEP | SCSI_NOMASK | SCSI_SILENT))
{ {
printf("\tst%d: tape present: %d blocks of %d bytes\n", printf("st%d: tape present: %d blocks of %d bytes\n",
unit, st->numblks, st->media_blksiz); unit, st->numblks, st->media_blksiz);
} }
else else
{ {
printf("\tst%d: drive empty\n", unit); printf("st%d: drive empty\n", unit);
} }
} }
else else
{ {
printf("\tst%d: drive offline\n", unit); printf("st%d: drive offline\n", unit);
} }
/*******************************************************\ /*******************************************************\
* Set up the bufs for this device * * Set up the bufs for this device *