1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00

whitespaces

This commit is contained in:
Steffen Vogel 2018-10-21 12:57:08 +01:00
parent a1fc8fe017
commit 082fb11948

View file

@ -41,6 +41,7 @@ int pool_init(struct pool *p, size_t cnt, size_t blocksz, struct memory_type *m)
serror("Failed to allocate memory for memory pool");
else
debug(LOG_POOL | 4, "Allocated %#zx bytes for memory pool", p->len);
p->buffer_off = (char*) buffer - (char*) p;
ret = queue_init(&p->queue, LOG2_CEIL(cnt), m);