From 449e9d726f63770ef5efdfa4959fa0f139f86bdb Mon Sep 17 00:00:00 2001 From: snarmph <1902881@uad.ac.uk> Date: Thu, 30 Sep 2021 17:50:12 +0200 Subject: [PATCH] fix --- CMakeLists.txt | 2 +- http.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index e7412e2..8455f56 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -8,7 +8,7 @@ add_library(Colla STATIC ) IF (WIN32) - target_link_libraries(Common ws2_32.lib) + target_link_libraries(Colla ws2_32.lib) ELSE() # posix ENDIF() \ No newline at end of file diff --git a/http.h b/http.h index 146bd73..a1c2a7a 100644 --- a/http.h +++ b/http.h @@ -56,7 +56,7 @@ typedef struct { uint8_t minor; } http_version_t; -// transaltes a http_version_t to a single readable number (e.g. 1.1 -> 11, 1.0 -> 10, etc) +// translates a http_version_t to a single readable number (e.g. 1.1 -> 11, 1.0 -> 10, etc) int httpVerNumber(http_version_t ver); typedef struct {