diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2002-02-18 22:24:33 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2002-02-18 22:24:33 +0000 |
commit | b9f880e42718c46741a80455585dcf9a8e01f48b (patch) | |
tree | b4231f655633c1b33ff40d432fa64b94abcfd2cd /lib/libcurses/tic.h | |
parent | 70d45d96856973d63681c1ea4b425a81e59f2029 (diff) |
make Booleans signed char, since char is unsigned on powerpc; millert ok
Diffstat (limited to 'lib/libcurses/tic.h')
-rw-r--r-- | lib/libcurses/tic.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libcurses/tic.h b/lib/libcurses/tic.h index c9539af91f9..64943ee9068 100644 --- a/lib/libcurses/tic.h +++ b/lib/libcurses/tic.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tic.h,v 1.12 2001/02/22 04:37:53 millert Exp $ */ +/* $OpenBSD: tic.h,v 1.13 2002/02/18 22:24:32 deraadt Exp $ */ /**************************************************************************** * Copyright (c) 1998-2000 Free Software Foundation, Inc. * @@ -221,7 +221,7 @@ extern NCURSES_EXPORT(const struct name_table_entry * const *) _nc_get_hash_tabl #define ABSENT_STRING (char *)0 /* out-of-band values for representing cancels */ -#define CANCELLED_BOOLEAN (char)(-2) +#define CANCELLED_BOOLEAN (signed char)(-2) #define CANCELLED_NUMERIC -2 #define CANCELLED_STRING (char *)-1 |