From: Ted Lemon Date: Thu, 27 Jan 2000 23:37:59 +0000 (+0000) Subject: Add reference pointer to rc history structure. X-Git-Tag: V3-BETA-2-PATCH-1~376 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=bc7b98ab10d9e232ba687a97f24c15ff286ba631;p=thirdparty%2Fdhcp.git Add reference pointer to rc history structure. --- diff --git a/includes/omapip/alloc.h b/includes/omapip/alloc.h index 2b0a923cc..4e269f153 100644 --- a/includes/omapip/alloc.h +++ b/includes/omapip/alloc.h @@ -52,7 +52,8 @@ struct dmalloc_preamble { struct rc_history_entry { const char *file; int line; - VOIDPTR addr; + void *reference; + void *addr; int refcnt; };