diff options
author | jkh <jkh@FreeBSD.org> | 1994-08-30 00:12:11 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1994-08-30 00:12:11 +0000 |
commit | 54330c2cb2d7a7486b4154907af5f874c06390b6 (patch) | |
tree | dbba4292f64da962d5ed79a8419b5ab897c4d886 /sys/scsi | |
parent | 2e446d149566f5e44a2799b72e73f9f666b5be48 (diff) | |
download | FreeBSD-src-54330c2cb2d7a7486b4154907af5f874c06390b6.zip FreeBSD-src-54330c2cb2d7a7486b4154907af5f874c06390b6.tar.gz |
Make decl/define for Debugger() match reality.
Submitted by: jkh
Diffstat (limited to 'sys/scsi')
-rw-r--r-- | sys/scsi/sd.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/scsi/sd.c b/sys/scsi/sd.c index 220c015..0b26802 100644 --- a/sys/scsi/sd.c +++ b/sys/scsi/sd.c @@ -14,7 +14,7 @@ * * Ported to run under 386BSD by Julian Elischer (julian@dialix.oz.au) Sept 1992 * - * $Id: sd.c,v 1.25 1994/08/27 16:14:34 davidg Exp $ + * $Id: sd.c,v 1.26 1994/08/29 21:37:49 ache Exp $ */ #define SPLSD splbio @@ -43,9 +43,9 @@ u_int32 sdstrats, sdqueues; #ifdef DDB -int Debugger(); +int Debugger(const char *); #else /* DDB */ -#define Debugger() +#define Debugger(x) #endif /* DDB */ #define PAGESIZ 4096 |