From 1a9468c9a0c0bd6e3ff1b9bff7547dd7e7aa9bb7 Mon Sep 17 00:00:00 2001 From: David Gibson Date: Thu, 6 Mar 2008 15:48:04 +1100 Subject: dtc: Abolish asize field of struct data The asize field in struct data is a hangover from the early days when a struct data was sometimes allowed to refer to a static chunk of memory rather than a malloc()ed block. That's long gone, since the lifetime issues were far more trouble than it was worth, so get rid of the asize field. Signed-off-by: David Gibson --- dtc.h | 1 - 1 file changed, 1 deletion(-) (limited to 'dtc.h') diff --git a/dtc.h b/dtc.h index dbff5e8..d5be1a5 100644 --- a/dtc.h +++ b/dtc.h @@ -118,7 +118,6 @@ struct marker { struct data { int len; char *val; - int asize; struct marker *markers; }; -- cgit v1.1