diff options
author | Jason Wright <jason@cvs.openbsd.org> | 2003-06-23 16:49:45 +0000 |
---|---|---|
committer | Jason Wright <jason@cvs.openbsd.org> | 2003-06-23 16:49:45 +0000 |
commit | 622132d6d2a99da3561aea09947a3025082050e0 (patch) | |
tree | 7e589270862d61836122a01104b78b1f6fe499d8 /sys/arch/sparc64/dev | |
parent | 73f3711db475ec25769e9ed08bf073d5db15e917 (diff) |
Remove some debugging cruft.
Diffstat (limited to 'sys/arch/sparc64/dev')
-rw-r--r-- | sys/arch/sparc64/dev/creator.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/sys/arch/sparc64/dev/creator.c b/sys/arch/sparc64/dev/creator.c index 65ce54ab5e7..8d625951539 100644 --- a/sys/arch/sparc64/dev/creator.c +++ b/sys/arch/sparc64/dev/creator.c @@ -1,4 +1,4 @@ -/* $OpenBSD: creator.c,v 1.27 2003/06/20 19:54:37 miod Exp $ */ +/* $OpenBSD: creator.c,v 1.28 2003/06/23 16:49:44 jason Exp $ */ /* * Copyright (c) 2002 Jason L. Wright (jason@thought.net) @@ -504,10 +504,8 @@ creator_mmap(vsc, off, prot) off < (creator_map[i].uoff + creator_map[i].ulen)) break; } - if (i == CREATOR_NMAPPINGS) { - printf("didn't find %llx\n", off); + if (i == CREATOR_NMAPPINGS) break; - } off -= creator_map[i].uoff; off += creator_map[i].poff; |