From: Michael Brown Date: Mon, 18 Dec 2006 16:48:09 +0000 (+0000) Subject: Use int rather than short for bool; it will give more efficient code. X-Git-Tag: v0.9.3~916 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=688eb60df4b2dc59908eccf386e28f8532c82259;p=thirdparty%2Fipxe.git Use int rather than short for bool; it will give more efficient code. --- diff --git a/src/include/curses.h b/src/include/curses.h index 86825be4d..d35665845 100644 --- a/src/include/curses.h +++ b/src/include/curses.h @@ -22,7 +22,7 @@ #undef TRUE #define TRUE (1) -typedef short bool; +typedef int bool; typedef uint32_t chtype; typedef uint32_t attr_t;