From 6e5c15d095d37036553d491b52d27fbbda08e7f2 Mon Sep 17 00:00:00 2001 From: Azat Khuzhin Date: Sat, 16 Dec 2017 23:28:41 +0300 Subject: [PATCH] Fix typo in cmake because of which EVENT__SIZEOF_SIZE_T was wrong Fixes: #580 --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 709d1121..3ec95506 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -430,7 +430,7 @@ CHECK_SYMBOL_EXISTS(F_SETFD fcntl.h EVENT__HAVE_SETFD) CHECK_TYPE_SIZE(fd_mask EVENT__HAVE_FD_MASK) -CHECK_TYPE_SIZE(size_t EVENT__SIZEOF_SIZEE_T) +CHECK_TYPE_SIZE(size_t EVENT__SIZEOF_SIZE_T) if(NOT EVENT__SIZEOF_SIZE_T) set(EVENT__size_t "unsigned") set(EVENT__SIZEOF_SIZE_T ${EVENT__SIZEOF_UNSIGNED}) -- 2.40.0