From 3e06ba45905663d7c9e50f424a573fb94bf995dd Mon Sep 17 00:00:00 2001 From: David Griffith Date: Thu, 18 Jul 2019 00:06:04 +0000 Subject: [PATCH] Fix problem with an ifdef that should have been ifndef. --- src/curses/ux_input.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/curses/ux_input.c b/src/curses/ux_input.c index 22ceb40..5814427 100644 --- a/src/curses/ux_input.c +++ b/src/curses/ux_input.c @@ -36,7 +36,7 @@ #ifdef USE_UTF8 #include #else -#ifdef wint_t +#ifndef wint_t typedef unsigned int wint_t; #endif #endif -- 2.34.1