diff options
author | 2006-05-09 00:35:29 +0000 | |
---|---|---|
committer | 2006-05-09 00:35:29 +0000 | |
commit | 34eeb1ca45cfb1fabf148d694224a46bae850869 (patch) | |
tree | 41177485d0bdfd82d719a9eb91aa91015d355f2d | |
parent | more pretty (diff) | |
download | wireguard-openbsd-34eeb1ca45cfb1fabf148d694224a46bae850869.tar.xz wireguard-openbsd-34eeb1ca45cfb1fabf148d694224a46bae850869.zip |
Remove some debug printf's that snuck in.
-rw-r--r-- | sys/arch/i386/i386/bios.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/sys/arch/i386/i386/bios.c b/sys/arch/i386/i386/bios.c index 229ed2d9f81..17c76e70aa2 100644 --- a/sys/arch/i386/i386/bios.c +++ b/sys/arch/i386/i386/bios.c @@ -1,4 +1,4 @@ -/* $OpenBSD: bios.c,v 1.60 2006/05/08 22:53:10 deraadt Exp $ */ +/* $OpenBSD: bios.c,v 1.61 2006/05/09 00:35:29 gwk Exp $ */ /* * Copyright (c) 1997-2001 Michael Shalayeff @@ -660,7 +660,6 @@ smbios_find_table(u_int8_t type, struct smbtable *st) for (; va + sizeof(struct smbtblhdr) < end && tcount <= smbios_entry.count; tcount++) { hdr = (struct smbtblhdr *) va; - printf("SMBIOS (%d)@%p type: %d", tcount, va, hdr->type); if (hdr->type == type) { ret = 1; st->hdr = hdr; @@ -671,12 +670,10 @@ smbios_find_table(u_int8_t type, struct smbtable *st) if (hdr->type == SMBIOS_TYPE_EOT) break; va+= hdr->size; - printf(" size: %d strings@%p", hdr->size, va); for (; va + 1 < end; va++) if (*va == NULL && *(va + 1) == NULL) break; va+=2; - printf(" end@%p\n", va); } printf("\n"); |