diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1999-06-05 21:58:15 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1999-06-05 21:58:15 +0000 |
commit | b64780a41e3237fc72bbc817e8c4cdccc40271dd (patch) | |
tree | 4183d334461e28764841722513458410f6310282 /sys | |
parent | dfdc61cd36eaeb48bb2636bf9a44902da6db8f3d (diff) |
say media error instead of medium error
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/atapi/atapiconf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/atapi/atapiconf.c b/sys/dev/atapi/atapiconf.c index 41ce88c12b4..a026f90c393 100644 --- a/sys/dev/atapi/atapiconf.c +++ b/sys/dev/atapi/atapiconf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: atapiconf.c,v 1.22 1998/06/09 13:29:58 provos Exp $ */ +/* $OpenBSD: atapiconf.c,v 1.23 1999/06/05 21:58:14 deraadt Exp $ */ /* * Copyright (c) 1996 Manuel Bouyer. All rights reserved. @@ -686,7 +686,7 @@ atapi_sense(acp, sense_key, flags) break; case ATAPI_SK_MEDIUM_ERROR: - SILENT_PRINTF(flags,("medium error")); + SILENT_PRINTF(flags,("media error")); acp->status = ERROR; break; |