commit | 27ba0885493243945b16e14056c0a98a3ab14021 | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Thu Jun 07 21:09:39 2012 +0200 |
committer | Bram Moolenaar <Bram@vim.org> | Thu Jun 07 21:09:39 2012 +0200 |
tree | 227a037f20eae8be9528d9baeb50d26580e4e9dd | |
parent | 802053f14ac4da63c027df2f1a8333c9a26da7dc [diff] [blame] |
updated for version 7.3.548 Problem: Compiler warning on 64 bit Windows. Solution: Add type cast. (Mike Williams)
diff --git a/src/ops.c b/src/ops.c index ca327b9..37c6aab 100644 --- a/src/ops.c +++ b/src/ops.c
@@ -4352,7 +4352,7 @@ char_u *new_curr = skip_comment(curr, TRUE, insert_space, &prev_was_comment); - comments[t] = new_curr - curr; + comments[t] = (int)(new_curr - curr); curr = new_curr; } else