From ea23ab53c30d086d41f67e5dda772099a0c309fd Mon Sep 17 00:00:00 2001 From: scottr Date: Mon, 31 Mar 1997 07:30:41 +0000 Subject: [PATCH] Add missing argument to diagnostic printf() --- sys/arch/hp300/dev/dio.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/sys/arch/hp300/dev/dio.c b/sys/arch/hp300/dev/dio.c index cc5c84cc76a2..4acce975f237 100644 --- a/sys/arch/hp300/dev/dio.c +++ b/sys/arch/hp300/dev/dio.c @@ -1,4 +1,4 @@ -/* $NetBSD: dio.c,v 1.3 1997/01/30 09:18:37 thorpej Exp $ */ +/* $NetBSD: dio.c,v 1.4 1997/03/31 07:30:41 scottr Exp $ */ /*- * Copyright (c) 1996 The NetBSD Foundation, Inc. @@ -123,7 +123,8 @@ dioattach(parent, self, aux) else { va = iomap(pa, NBPG); if (va == NULL) { - printf("%s: can't map scode %d\n", scode); + printf("%s: can't map scode %d\n", + self->dv_xname, scode); scode++; continue; }