summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sys/dev/atapi/atapiconf.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/dev/atapi/atapiconf.c b/sys/dev/atapi/atapiconf.c
index a4cca6ca76d..79654704b9f 100644
--- a/sys/dev/atapi/atapiconf.c
+++ b/sys/dev/atapi/atapiconf.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: atapiconf.c,v 1.10 1996/09/11 07:22:04 downsj Exp $ */
+/* $OpenBSD: atapiconf.c,v 1.11 1996/09/12 02:36:10 downsj Exp $ */
/*
* Copyright (c) 1996 Manuel Bouyer. All rights reserved.
@@ -592,22 +592,22 @@ atapi_error(acp)
at_print_addr(ad_link, acp->flags & 0xff);
if (error & ATAPI_MCR) {
- SILENT_PRINTF(flags,("media change requested"));
+ SILENT_PRINTF(flags,("media change requested "));
acp->status = MEDIA_CHANGE;
}
if (error & ATAPI_ABRT) {
- SILENT_PRINTF(flags,("command aborted"));
+ SILENT_PRINTF(flags,("command aborted "));
acp->status = ERROR;
}
if (error & ATAPI_EOM) {
- SILENT_PRINTF(flags,("end of media"));
+ SILENT_PRINTF(flags,("end of media "));
acp->status = END_OF_MEDIA;
}
if (error & ATAPI_ILI) {
- SILENT_PRINTF(flags,("illegal length indication"));
+ SILENT_PRINTF(flags,("illegal length indication "));
acp->status = ERROR;
}