diff options
author | Bram Moolenaar <Bram@vim.org> | 2018-09-16 14:51:36 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2018-09-16 14:51:36 +0200 |
commit | 6e272acc82af900318017061f923e7f66dc7ee7a (patch) | |
tree | dccedf1934e5471fa11b0b49496eadef886789d5 /src/diff.c | |
parent | e3521d9cbb786806eaff106707851d37d2c0ecef (diff) | |
download | vim-git-6e272acc82af900318017061f923e7f66dc7ee7a.tar.gz |
patch 8.1.0395: compiler warning on 64-bit MS-Windowsv8.1.0395
Problem: Compiler warning on 64-bit MS-Windows.
Solution: Add type cast. (Mike Williams)
Diffstat (limited to 'src/diff.c')
-rw-r--r-- | src/diff.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/diff.c b/src/diff.c index 69ba7a389..02f1c3325 100644 --- a/src/diff.c +++ b/src/diff.c @@ -712,7 +712,7 @@ diff_write_buffer(buf_T *buf, diffin_T *din) // xdiff requires one big block of memory with all the text. for (lnum = 1; lnum <= buf->b_ml.ml_line_count; ++lnum) - len += STRLEN(ml_get_buf(buf, lnum, FALSE)) + 1; + len += (long)STRLEN(ml_get_buf(buf, lnum, FALSE)) + 1; ptr = lalloc(len, TRUE); if (ptr == NULL) { |