1
0
mirror of https://gitlab.xiph.org/xiph/ezstream.git synced 2024-09-15 04:08:07 -04:00
git-svn-id: https://svn.xiph.org/trunk/ezstream@13460 0101bb08-14d6-0310-b084-bc0e0c8e3800
This commit is contained in:
moritz 2007-08-08 13:24:29 +00:00
parent 71a41f876c
commit 709ae55108

View File

@ -594,7 +594,7 @@ xrealloc_c(void *ptr, size_t nmemb, size_t size,
#ifdef XALLOC_DEBUG #ifdef XALLOC_DEBUG
if (debug_level > 0) { if (debug_level > 0) {
struct memory *mem_exists; struct memory *mem_exists;
ssize_t diff = nsiz - mem->size; ssize_t diff = (ssize_t)(nsiz - mem->size);
XALLOC_LOCK(xalloc_mutex); XALLOC_LOCK(xalloc_mutex);
xalloc_allocated += diff; xalloc_allocated += diff;