From f506c5bb1c0c191511316b4b9b2e9a5af176d446 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Tue, 22 Jun 2010 06:28:58 +0200 Subject: Fix compiler warnings for shadowed variables. Make 'conceal' a long instead of int. --- src/structs.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/structs.h') diff --git a/src/structs.h b/src/structs.h index a1c7e9d9a8..d792c7804e 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 -- cgit v1.2.3