aboutsummaryrefslogtreecommitdiffstats
path: root/src/include/curses.h
diff options
context:
space:
mode:
authorMichael Brown <mcb30@etherboot.org>2006-12-18 16:48:09 +0000
committerMichael Brown <mcb30@etherboot.org>2006-12-18 16:48:09 +0000
commit688eb60df4b2dc59908eccf386e28f8532c82259 (patch)
treeb22949a50721d3200528ff952b061801cd05b7c8 /src/include/curses.h
parent2ed2b2efe842eac526ecdd74f147ea02f52daf29 (diff)
downloadipxe-688eb60df4b2dc59908eccf386e28f8532c82259.tar.gz
Use int rather than short for bool; it will give more efficient code.
Diffstat (limited to 'src/include/curses.h')
-rw-r--r--src/include/curses.h2
1 files changed, 1 insertions, 1 deletions
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;