DW:
- I'm an idiot, got the debug level logic backwards
.. we really should have done this the opposite way around to reduce the
CVS repo size, but thats just me being anal. :)
/*
- * $Id: diskd.cc,v 1.7 2000/11/09 03:32:59 wessels Exp $
+ * $Id: diskd.cc,v 1.8 2000/11/14 09:55:49 adrian Exp $
*
* DEBUG: section -- External DISKD process implementation.
* AUTHOR: Harvest Derived
#include <assert.h>
-#define DEBUG(LEVEL) if (LEVEL > DebugLevel)
+#define DEBUG(LEVEL) if (LEVEL <= DebugLevel)
typedef struct _file_state file_state;