diff options
author | bde <bde@FreeBSD.org> | 1994-11-16 02:45:36 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1994-11-16 02:45:36 +0000 |
commit | 6d4cb0cef21784d16c879266491dde3aa38247fc (patch) | |
tree | e9d2af8a79b03fe790875fcd2ea6b491c521f704 /sys/i386/isa/aic6360.c | |
parent | 53e66dfa73daaa6b76e7ee04e5d621bbce158f31 (diff) | |
download | FreeBSD-src-6d4cb0cef21784d16c879266491dde3aa38247fc.zip FreeBSD-src-6d4cb0cef21784d16c879266491dde3aa38247fc.tar.gz |
The previous revision forgot to define fatal_if_no_DDB() when there is DDB.
Diffstat (limited to 'sys/i386/isa/aic6360.c')
-rw-r--r-- | sys/i386/isa/aic6360.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sys/i386/isa/aic6360.c b/sys/i386/isa/aic6360.c index a8b5f58..47004a4 100644 --- a/sys/i386/isa/aic6360.c +++ b/sys/i386/isa/aic6360.c @@ -31,7 +31,7 @@ */ /* - * $Id: aic6360.c,v 1.3 1994/10/23 21:27:07 wollman Exp $ + * $Id: aic6360.c,v 1.4 1994/11/15 14:54:13 bde Exp $ * * Acknowledgements: Many of the algorithms used in this driver are * inspired by the work of Julian Elischer (julian@tfs.com) and @@ -494,7 +494,9 @@ -#if defined(KERNEL) && !defined(DDB) +#ifdef DDB +#define fatal_if_no_DDB() +#else #define fatal_if_no_DDB() panic("panic for historical reasons") #endif |