Skip to content
Snippets Groups Projects
Commit 544634b9 authored by Marek Vavruša's avatar Marek Vavruša
Browse files

lib: fixed missing cast

parent 46f19985
No related branches found
No related tags found
No related merge requests found
...@@ -152,7 +152,7 @@ static int resolve_iterative(struct kr_layer_param *param, mm_ctx_t *pool) ...@@ -152,7 +152,7 @@ static int resolve_iterative(struct kr_layer_param *param, mm_ctx_t *pool)
} }
} }
DEBUG_MSG("finished: %s, mempool: %llu B\n", knot_strerror(ret), mp_total_size(pool->ctx)); DEBUG_MSG("finished: %s, mempool: %zu B\n", knot_strerror(ret), (size_t) mp_total_size(pool->ctx));
knot_requestor_clear(&requestor); knot_requestor_clear(&requestor);
return ret; return ret;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment