diff options
author | peter <peter@FreeBSD.org> | 2002-08-24 02:51:28 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 2002-08-24 02:51:28 +0000 |
commit | 9c43c0f5449447245807b7c5811c207b039c4754 (patch) | |
tree | fc88746a598d418a7f74ff3a029ad0e19778ec6f /sys/cam | |
parent | c95babc518928d04b8200f94242b3c2bcdee74d2 (diff) | |
download | FreeBSD-src-9c43c0f5449447245807b7c5811c207b039c4754.zip FreeBSD-src-9c43c0f5449447245807b7c5811c207b039c4754.tar.gz |
Add some \n's to printf()s
Diffstat (limited to 'sys/cam')
-rw-r--r-- | sys/cam/cam_periph.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/cam/cam_periph.c b/sys/cam/cam_periph.c index 48d26e7..e3c807a 100644 --- a/sys/cam/cam_periph.c +++ b/sys/cam/cam_periph.c @@ -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++; } |