summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnil Madhavapeddy <avsm@cvs.openbsd.org>2003-06-28 23:55:51 +0000
committerAnil Madhavapeddy <avsm@cvs.openbsd.org>2003-06-28 23:55:51 +0000
commit9a8ebf500c3d4316bb2b707fc798478c68905acf (patch)
tree296c233921d3545097d230533bbc0d207b3f43fd
parent87eb0d76ba3d5c940f2648395bf2e0c1f3376474 (diff)
fix wrong format type; ok deraadt, tedu, mickey
-rw-r--r--sys/dev/ic/ami.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/ic/ami.c b/sys/dev/ic/ami.c
index 9cff7fb2de4..0d3e2790e6b 100644
--- a/sys/dev/ic/ami.c
+++ b/sys/dev/ic/ami.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ami.c,v 1.22 2003/06/02 19:24:22 mickey Exp $ */
+/* $OpenBSD: ami.c,v 1.23 2003/06/28 23:55:50 avsm Exp $ */
/*
* Copyright (c) 2001 Michael Shalayeff
@@ -819,7 +819,7 @@ ami_stimeout(v)
break;
case AMI_CCB_FREE:
case AMI_CCB_READY:
- panic("ami_stimeout(%p) botch", cmd->acc_id);
+ panic("ami_stimeout(%d) botch", cmd->acc_id);
}
AMI_UNLOCK_AMI(sc, lock);
}