1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-17 10:26:15 +00:00

Add some \n's to printf()s

This commit is contained in:
Peter Wemm 2002-08-24 02:51:28 +00:00
parent c1b8161326
commit a5074f708e
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=102342

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++;
}