From eab7806f2018eeed66d4cfb2151c069237206cd4 Mon Sep 17 00:00:00 2001 From: Klaus Schmidinger Date: Mon, 5 Jan 2004 11:04:17 +0100 Subject: Fixed a warning about character comparison in libsi/si.c --- libsi/si.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libsi') diff --git a/libsi/si.c b/libsi/si.c index bcf519a8..ac2e26ff 100644 --- a/libsi/si.c +++ b/libsi/si.c @@ -6,7 +6,7 @@ * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * - * $Id: si.c 1.3 2004/01/04 14:26:53 kls Exp $ + * $Id: si.c 1.4 2004/01/05 11:04:17 kls Exp $ * * ***************************************************************************/ @@ -219,7 +219,7 @@ void String::decodeText(char *buffer) { break; if ( ((' ' <= *from) && (*from <= '~')) || (*from == '\n') - || ((0xA0 <= *from) && (*from <= 0xFF)) + || (0xA0 <= *from) ) *to++ = *from; else if (*from == 0x8A) -- cgit v1.2.3