aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXavier Del Campo Romero <xavi.dcr@tutanota.com>2023-07-06 00:42:12 +0200
committerXavier Del Campo Romero <xavi.dcr@tutanota.com>2023-07-06 00:42:12 +0200
commit640210a7f6f527c24924e95c51c5665b3cd76d03 (patch)
treeadd4956145b44fea5c2d1a52ca93d408430d4b81
parent7bd56e69dccec2794a7b568eb254a40f96b900c5 (diff)
server.c: Fix typo
-rw-r--r--server.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/server.c b/server.c
index f9fb874..22615b2 100644
--- a/server.c
+++ b/server.c
@@ -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;
}