Git development
 help / color / mirror / Atom feed
* [PATCH] (tig) Fix signed char comparison where char is unsigned by default.
@ 2008-03-18  8:47 Russell Steicke
  0 siblings, 0 replies; only message in thread
From: Russell Steicke @ 2008-03-18  8:47 UTC (permalink / raw)
  To: git

tig uses a char as a flag, and expects that to have three
values: TRUE, FALSE, and -1.  When char is unsigned char (such
as on PPC), this fails with the compiler warning "comparison is
always false due to limited range of data type".

So explicitly make the flag a signed char.

Detecting the int8_t type with the autoconf macro
AC_CREATE_STDINT_H would probably be a better fix.

Signed-off-by: Russell Steicke <russellsteicke@gmail.com>
---
 tig.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/tig.c b/tig.c
index 89a4c5d..448ce20 100644
--- a/tig.c
+++ b/tig.c
@@ -434,7 +434,7 @@ static iconv_t opt_iconv		= ICONV_NONE;
 static char opt_search[SIZEOF_STR]	= "";
 static char opt_cdup[SIZEOF_STR]	= "";
 static char opt_git_dir[SIZEOF_STR]	= "";
-static char opt_is_inside_work_tree	= -1; /* set to TRUE or FALSE */
+static signed char opt_is_inside_work_tree	= -1; /* set to TRUE or FALSE */
 static char opt_editor[SIZEOF_STR]	= "";
 
 enum option_type {
-- 
1.5.4.4


-- 
Russell Steicke

-- Fortune says:
Everything I like is either illegal, immoral or fattening.
		-- Alexander Woollcott

^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2008-03-18  8:48 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-03-18  8:47 [PATCH] (tig) Fix signed char comparison where char is unsigned by default Russell Steicke

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox