summaryrefslogtreecommitdiff
path: root/sys/arch/i386
diff options
context:
space:
mode:
Diffstat (limited to 'sys/arch/i386')
-rw-r--r--sys/arch/i386/stand/libsa/dev_i386.c13
1 files changed, 8 insertions, 5 deletions
diff --git a/sys/arch/i386/stand/libsa/dev_i386.c b/sys/arch/i386/stand/libsa/dev_i386.c
index 78936b2bd1d..e8a711104c5 100644
--- a/sys/arch/i386/stand/libsa/dev_i386.c
+++ b/sys/arch/i386/stand/libsa/dev_i386.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: dev_i386.c,v 1.6 1997/04/08 22:48:28 mickey Exp $ */
+/* $OpenBSD: dev_i386.c,v 1.7 1997/04/15 03:31:06 mickey Exp $ */
/*
* Copyright (c) 1996 Michael Shalayeff
@@ -50,25 +50,28 @@ devopen(struct open_file *f, const char *fname, char **file)
*file = (char *)fname;
#ifdef DEBUG
- printf("devopen:");
+ if (debug)
+ printf("devopen:");
#endif
for (i = 0; i < ndevs && rc != 0; dp++, i++) {
#ifdef DEBUG
- printf(" %s", dp->dv_name);
+ if (debug)
+ printf(" %s", dp->dv_name);
#endif
if ((rc = (*dp->dv_open)(f, file)) == 0) {
f->f_dev = dp;
return 0;
}
#ifdef DEBUG
- else
+ else if (debug)
printf(":%d", rc);
#endif
}
#ifdef DEBUG
- putchar('\n');
+ if (debug)
+ putchar('\n');
#endif
if ((f->f_flags & F_NODEV) == 0)