summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorormorph <roma251078@mail.ru>2022-12-13 11:58:08 +0000
committerormorph <roma251078@mail.ru>2022-12-13 11:58:08 +0000
commitdaca4af7e37eefe2fa3ca2d4518411fef68fc641 (patch)
treeea06b1f940f1f81fcaf4dca1d71e2ae8353b8f4d
parente71c119a05916aa8b1327b347db8f178291aac32 (diff)
downloadtdelibs-daca4af7.tar.gz
tdelibs-daca4af7.zip
Added missing semicolon to malloc.c
Signed-off-by: ormorph <roma251078@mail.ru>
-rw-r--r--tdecore/malloc/malloc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tdecore/malloc/malloc.c b/tdecore/malloc/malloc.c
index 5cdab5ac7..0c02ee307 100644
--- a/tdecore/malloc/malloc.c
+++ b/tdecore/malloc/malloc.c
@@ -4306,7 +4306,7 @@ static Void_t** iALLOc(n_elements, sizes, opts, chunks) size_t n_elements; size_
remainder_size = chunksize(p);
if (opts & 0x2) { /* optionally clear the elements */
- memset(mem, 0, remainder_size - SIZE_SZ - array_size)
+ memset(mem, 0, remainder_size - SIZE_SZ - array_size);
}
/* If not provided, allocate the pointer array as final part of chunk */