Mercurial > vim
changeset 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 | 2ccc051335d2 |
children | 6eb5981fd829 |
files | src/charset.c src/screen.c src/version.c |
diffstat | 3 files changed, 5 insertions(+), 3 deletions(-) [+] |
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);
--- 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;