diff src/screen.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 501f46f7644c
line wrap: on
line diff
--- a/src/screen.c
+++ b/src/screen.c
@@ -4554,7 +4554,7 @@ win_line(
 		 * Found last space before word: check for line break.
 		 */
 		if (wp->w_p_lbr && c0 == c
-				      && VIM_ISBREAK(c) && !VIM_ISBREAK(*ptr))
+				  && VIM_ISBREAK(c) && !VIM_ISBREAK((int)*ptr))
 		{
 # ifdef FEAT_MBYTE
 		    int mb_off = has_mbyte ? (*mb_head_off)(line, ptr - 1) : 0;