Fixed bug in unused function.

This commit is contained in:
Ondrej Filip 2014-04-14 12:28:30 +02:00
parent 859cbd75e1
commit 7c4a800725

View file

@ -250,7 +250,7 @@ lp_memsize(resource *r)
cnt++;
return ALLOC_OVERHEAD + sizeof(struct linpool) +
cnt * (ALLOC_OVERHEAD + sizeof(sizeof(struct lp_chunk))) +
cnt * (ALLOC_OVERHEAD + sizeof(struct lp_chunk)) +
m->total + m->total_large;
}