summaryrefslogtreecommitdiff
path: root/cvt/iidesc.c
diff options
context:
space:
mode:
authorWez Furlong <wez@netevil.org>2011-04-03 15:19:34 -0400
committerWez Furlong <wez@netevil.org>2011-04-03 15:19:34 -0400
commitee2b74dbc88c21f3e6c53d6d4f09a69b271755e4 (patch)
tree635825833d7a4679d30cd2e0260b91a51b1831cd /cvt/iidesc.c
parent253acb864d82ab0406d6a6bcecd09e502c64b140 (diff)
downloadctf-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 'cvt/iidesc.c')
-rw-r--r--cvt/iidesc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cvt/iidesc.c b/cvt/iidesc.c
index 75f986c..1f2c71e 100644
--- a/cvt/iidesc.c
+++ b/cvt/iidesc.c
@@ -31,7 +31,7 @@
#include "libctf/ctf_impl.h"
#include "ctftools.h"
-#include "memory.h"
+#include "common/memory.h"
#include "common/list.h"
#include "hash.h"