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)) {