diff options
author | Wez Furlong <wez@netevil.org> | 2011-04-03 15:19:34 -0400 |
---|---|---|
committer | Wez Furlong <wez@netevil.org> | 2011-04-03 15:19:34 -0400 |
commit | ee2b74dbc88c21f3e6c53d6d4f09a69b271755e4 (patch) | |
tree | 635825833d7a4679d30cd2e0260b91a51b1831cd /common/list.c | |
parent | 253acb864d82ab0406d6a6bcecd09e502c64b140 (diff) | |
download | ctf-ee2b74dbc88c21f3e6c53d6d4f09a69b271755e4.tar.gz |
fix memory.h include; was pulling in the system memory.h, leaving xmalloc
undefined and implictly returning an int rather than a void*.
Diffstat (limited to 'common/list.c')
-rw-r--r-- | common/list.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common/list.c b/common/list.c index 4958f27..d5c796f 100644 --- a/common/list.c +++ b/common/list.c @@ -34,8 +34,8 @@ #include <assert.h> #include <stdlib.h> -#include "list.h" -#include "memory.h" +#include "common/list.h" +#include "common/memory.h" struct list { void *l_data; |