diff options
author | Jason Downs <downsj@cvs.openbsd.org> | 1996-09-12 02:36:11 +0000 |
---|---|---|
committer | Jason Downs <downsj@cvs.openbsd.org> | 1996-09-12 02:36:11 +0000 |
commit | 00f8416e3c435717717a1c91ec4298c4ba42bf1b (patch) | |
tree | afcb395b2d66054e168424948d1d930861d25e8a /sys | |
parent | 89f6228ea51ab0caeb2f019af7d9a8ed1ef6738b (diff) |
Add some spaces.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/atapi/atapiconf.c | 10 |
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; } |