server.c: Fix typo

This commit is contained in:
Xavier Del Campo Romero 2023-07-06 00:42:12 +02:00
parent 7bd56e69dc
commit 640210a7f6
Signed by: xavi
GPG Key ID: 84FF3612A9BF43F2
1 changed files with 1 additions and 1 deletions

View File

@ -124,7 +124,7 @@ static struct server_client *alloc_client(struct server *const s)
if (!c)
{
fprintf(stderr, "%s: realloc(3): %s\n", __func__, strerror(errno));
fprintf(stderr, "%s: malloc(3): %s\n", __func__, strerror(errno));
return NULL;
}