diff options
author | 2014-10-08 22:24:26 +0000 | |
---|---|---|
committer | 2014-10-08 22:24:26 +0000 | |
commit | 5dbffadb167964884e0503bfc024fd6e26265f0b (patch) | |
tree | 862f99deb6add071c29d4c700b01ef8c41fffaf6 | |
parent | #ifndef DDB, correct a format string.. (diff) | |
download | wireguard-openbsd-5dbffadb167964884e0503bfc024fd6e26265f0b.tar.xz wireguard-openbsd-5dbffadb167964884e0503bfc024fd6e26265f0b.zip |
only call Debugger() #ifdef DDB
-rw-r--r-- | sys/arch/macppc/dev/openpic.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/arch/macppc/dev/openpic.c b/sys/arch/macppc/dev/openpic.c index 41cc3629acf..1b55ffd0e15 100644 --- a/sys/arch/macppc/dev/openpic.c +++ b/sys/arch/macppc/dev/openpic.c @@ -1,4 +1,4 @@ -/* $OpenBSD: openpic.c,v 1.74 2014/09/06 10:45:29 mpi Exp $ */ +/* $OpenBSD: openpic.c,v 1.75 2014/10/08 22:24:26 deraadt Exp $ */ /*- * Copyright (c) 2008 Dale Rahn <drahn@openbsd.org> @@ -744,5 +744,7 @@ openpic_ipi_ddb() #ifdef OPENPIC_NOISY printf("ipi_ddb() called\n"); #endif +#ifdef DDB Debugger(); +#endif } |