1
0
mirror of https://github.com/adtools/clib2.git synced 2025-12-08 14:59:05 +00:00

Added the missing semicolon;

This commit is contained in:
obarthel
2023-09-08 17:20:16 +02:00
parent 71708e84ce
commit 6cabff4bbb

2
library/stdlib_malloc.c Normal file → Executable file
View File

@ -141,7 +141,7 @@ __allocate_memory(
if (__addition_overflows(sizeof(*mn) + MALLOC_HEAD_SIZE + MALLOC_TAIL_SIZE, size))
{
SHOWMSG("integer overflow")
SHOWMSG("integer overflow");
__set_errno(ENOMEM);
goto out;