diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2013-09-30 14:42:12 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2013-09-30 14:42:12 +0200 |
commit | c3f5bb3e5b2ef9ed95fe32045f47fb05276d7727 (patch) | |
tree | d91bc47c144ea955bf6a6a9f63d0554311d12e06 | |
parent | eafd376f9f0a23cc1449c5ed7ef77201519a5c8b (diff) |
-Werror,-Wunused-function
Change-Id: I55e586fe1d145be139bf1c5b00f434ea31ba50d7
-rw-r--r-- | solenv/bin/concat-deps.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/solenv/bin/concat-deps.c b/solenv/bin/concat-deps.c index 87b6f32f9d3e..fec98ee2931f 100644 --- a/solenv/bin/concat-deps.c +++ b/solenv/bin/concat-deps.c @@ -258,16 +258,6 @@ void* data; } -static inline void pool_free(struct pool* pool, void* data) -{ - assert(pool && data); - - /* stack on top of the free list */ - *(void**)data = pool->head_free; - pool->head_free = data; -} - - /* =============================================== * Hash implementation custumized to be just tracking * a unique list of string (i.e no data associated |