From d9c43bb5605ebe8bb94d9c0d090c6a8970bf85dc Mon Sep 17 00:00:00 2001 From: terminx Date: Thu, 27 Jul 2017 09:13:32 +0000 Subject: [PATCH] Fix issue with r6374 git-svn-id: https://svn.eduke32.com/eduke32@6384 1a8010ca-5511-0410-912e-c29ae57300e0 --- source/build/include/compat.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/build/include/compat.h b/source/build/include/compat.h index 7820b618c..c93790490 100644 --- a/source/build/include/compat.h +++ b/source/build/include/compat.h @@ -730,7 +730,7 @@ typedef uint64_t reg_t; typedef int64_t sreg_t; #else typedef size_t reg_t; -typedef ssize_t sreg_t +typedef ssize_t sreg_t; #endif #if CXXSTD >= 2011 || EDUKE32_MSVC_PREREQ(1800)