From 7dd623fd6f317e6a0338b108e66ffa7fc944a519 Mon Sep 17 00:00:00 2001 From: Sean McBride Date: Mon, 19 Apr 2021 11:59:35 -0400 Subject: [PATCH] chore: fix typo in comment --- runtime/src/runtime.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/runtime/src/runtime.c b/runtime/src/runtime.c index b840d32..7066e85 100644 --- a/runtime/src/runtime.c +++ b/runtime/src/runtime.c @@ -1,6 +1,7 @@ #include #include #include +#include #include "admissions_control.h" #include "arch/context.h" @@ -165,7 +166,7 @@ listener_thread_main(void *dummy) /* * According to accept(2), it is possible that the the sockaddr structure client_address - * may be too small, resulting in data being truncated to fit. The appect call mutates + * may be too small, resulting in data being truncated to fit. The accept call mutates * the size value to indicate that this is the case. */ if (address_length > sizeof(client_address)) {