diff src/charset.c @ 11133:d8e830e32be9 v8.0.0454

patch 8.0.0454: compiler warnings for "always true" comparison commit https://github.com/vim/vim/commit/977d03733601948ab334fec24d0da82bc18c57c3 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Mar 12 21:31:58 2017 +0100 patch 8.0.0454: compiler warnings for "always true" comparison Problem: Compiler warnings for comparing unsigned char with 256 always being true. (Manuel Ortega) Solution: Add type cast.
author Christian Brabandt <cb@256bit.org>
date Sun, 12 Mar 2017 21:45:04 +0100
parents f4ea50924c6d
children fef09eb74832
line wrap: on
line diff
--- a/src/charset.c
+++ b/src/charset.c
@@ -1090,7 +1090,7 @@ win_lbr_chartabsize(
      */
     if (wp->w_p_lbr
 	    && VIM_ISBREAK(c)
-	    && !VIM_ISBREAK(s[1])
+	    && !VIM_ISBREAK((int)s[1])
 	    && wp->w_p_wrap
 # ifdef FEAT_WINDOWS
 	    && wp->w_width != 0
@@ -1120,7 +1120,7 @@ win_lbr_chartabsize(
 	    if (!(c != NUL
 		    && (VIM_ISBREAK(c)
 			|| (!VIM_ISBREAK(c)
-			    && (col2 == col || !VIM_ISBREAK(*ps))))))
+			    && (col2 == col || !VIM_ISBREAK((int)*ps))))))
 		break;
 
 	    col2 += win_chartabsize(wp, s, col2);