commit | f506c5bb1c0c191511316b4b9b2e9a5af176d446 | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Tue Jun 22 06:28:58 2010 +0200 |
committer | Bram Moolenaar <Bram@vim.org> | Tue Jun 22 06:28:58 2010 +0200 |
tree | b01e3afaefbe7db1a7ce9052d68396225053a190 | |
parent | 7cfea75ed6897c81dc129490dd894b1ddeebf433 [diff] [blame] |
Fix compiler warnings for shadowed variables. Make 'conceal' a long instead of int.
diff --git a/src/option.c b/src/option.c index fdca36f..ae3c539 100644 --- a/src/option.c +++ b/src/option.c
@@ -8133,7 +8133,7 @@ ml_open_files(); } #ifdef FEAT_CONCEAL - else if (pp == (long *)&curwin->w_p_conceal) + else if (pp == &curwin->w_p_conceal) { if (curwin->w_p_conceal < 0) {