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 /cvt/fifo.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 'cvt/fifo.c')
-rw-r--r-- | cvt/fifo.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -33,7 +33,7 @@ #include <stdlib.h> #include "fifo.h" -#include "memory.h" +#include "common/memory.h" typedef struct fifonode { void *fn_data; |