summaryrefslogtreecommitdiff
path: root/Source/DOH
diff options
context:
space:
mode:
Diffstat (limited to 'Source/DOH')
-rw-r--r--Source/DOH/base.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/Source/DOH/base.c b/Source/DOH/base.c
index 464afcd70..5ac18039b 100644
--- a/Source/DOH/base.c
+++ b/Source/DOH/base.c
@@ -172,20 +172,20 @@ DohData(const DOH *obj) {
}
/* -----------------------------------------------------------------------------
- * DohCmp()
+ * RawData()
* ----------------------------------------------------------------------------- */
-#define RawData(b) ((b->type->doh_data) ? (b->type->doh_data)(b) : 0)
-
-/*
static void *
RawData(DohBase *b) {
DohObjInfo *objinfo = b->type;
return (objinfo->doh_data) ? (objinfo->doh_data)(b) : 0;
}
-*/
+/* -----------------------------------------------------------------------------
+ * DohCmp()
+ * ----------------------------------------------------------------------------- */
+
int
DohCmp(const DOH *obj1, const DOH *obj2) {
DohBase *b1, *b2;