From 512fd4d832862b22ad85fe34035a5391d86afede Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Andriot?= Date: Thu, 12 May 2022 10:04:54 +0200 Subject: [PATCH] Fix 'true' definition. This fixes issue #43. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: François Andriot --- libvncserver/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libvncserver/main.cpp b/libvncserver/main.cpp index a07402a..bc90329 100644 --- a/libvncserver/main.cpp +++ b/libvncserver/main.cpp @@ -21,7 +21,7 @@ extern "C" { #ifndef false #define false 0 - #define true -1 + #define true 1 #endif #ifdef LIBVNCSERVER_HAVE_SYS_TYPES_H