commit a21baab57748cbb12cfb105c1664fdb67fef21d5
parent 8567aef72aae66acb276553f862f13b4d09bb0a0
Author: vaplv <vincent.forest@meso-star.com>
Date: Thu, 1 Dec 2016 16:06:14 +0100
Remove a printf use for debug
Diffstat:
1 file changed, 0 insertions(+), 1 deletion(-)
diff --git a/src/dynamic_array.h b/src/dynamic_array.h
@@ -152,7 +152,6 @@ DARRAY_FUNC__(reserve)(struct DARRAY_TYPE__* darray, const size_t sz)
return RES_OK;
sz_adjusted = round_up_pow2(sz);
- printf("%i %i %i\n", (int)ALIGNOF(DARRAY_DATA), (int)16, (int)DARRAY_ALIGNMENT__);
data = (DARRAY_DATA*)MEM_ALLOC_ALIGNED
(darray->allocator,
sz_adjusted * sizeof(DARRAY_DATA),