diff options
author | Bram Moolenaar <Bram@vim.org> | 2010-06-22 06:28:58 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2010-06-22 06:28:58 +0200 |
commit | f506c5bb1c0c191511316b4b9b2e9a5af176d446 (patch) | |
tree | b01e3afaefbe7db1a7ce9052d68396225053a190 /src/structs.h | |
parent | 7cfea75ed6897c81dc129490dd894b1ddeebf433 (diff) | |
download | vim-git-f506c5bb1c0c191511316b4b9b2e9a5af176d446.tar.gz |
Fix compiler warnings for shadowed variables. Make 'conceal' a long instead
of int.
Diffstat (limited to 'src/structs.h')
-rw-r--r-- | src/structs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/structs.h b/src/structs.h index a1c7e9d9a..d792c7804 100644 --- a/src/structs.h +++ b/src/structs.h @@ -214,7 +214,7 @@ typedef struct int wo_wrap; #define w_p_wrap w_onebuf_opt.wo_wrap /* 'wrap' */ #ifdef FEAT_CONCEAL - int wo_conceal; /* 'conceal' */ + long wo_conceal; /* 'conceal' */ # define w_p_conceal w_onebuf_opt.wo_conceal #endif #ifdef FEAT_CURSORBIND |