Add some \n's to printf()s

This commit is contained in:
peter 2002-08-24 02:51:28 +00:00
parent 775bb9d032
commit fc69883e15

View File

@ -1552,25 +1552,25 @@ cam_periph_error(union ccb *ccb, cam_flags camflags,
case CAM_CMD_TIMEOUT:
if (bootverbose && printed == 0) {
xpt_print_path(ccb->ccb_h.path);
printf("Command timed out");
printf("Command timed out\n");
printed++;
}
case CAM_UNEXP_BUSFREE:
if (bootverbose && printed == 0) {
xpt_print_path(ccb->ccb_h.path);
printf("Unexpected Bus Free");
printf("Unexpected Bus Free\n");
printed++;
}
case CAM_UNCOR_PARITY:
if (bootverbose && printed == 0) {
xpt_print_path(ccb->ccb_h.path);
printf("Uncorrected Parity Error");
printf("Uncorrected Parity Error\n");
printed++;
}
case CAM_DATA_RUN_ERR:
if (bootverbose && printed == 0) {
xpt_print_path(ccb->ccb_h.path);
printf("Data Overrun");
printf("Data Overrun\n");
printed++;
}
error = EIO; /* we have to kill the command */
@ -1600,7 +1600,7 @@ cam_periph_error(union ccb *ccb, cam_flags camflags,
error = ERESTART;
if (bootverbose && printed == 0) {
xpt_print_path(ccb->ccb_h.path);
printf("Selection Timeout");
printf("Selection Timeout\n");
printed++;
}