From fccfed5c6b8e1f22222c860981885077ee049a3d Mon Sep 17 00:00:00 2001 From: root Date: Wed, 30 Nov 2022 06:07:45 +0000 Subject: [PATCH] Fix broken linux build --- server_main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server_main.c b/server_main.c index e69a99b..e3f3aeb 100644 --- a/server_main.c +++ b/server_main.c @@ -20,7 +20,7 @@ void term(int signum) int main(int argc, char **argv) { struct sigaction action; - memset(&action, 0, sizeo(struct sigaction)); + memset(&action, 0, sizeof(struct sigaction)); action.sa_handler = term; sigaction(SIGTERM, &action, NULL);