diff options
author | Bram Moolenaar <Bram@vim.org> | 2014-07-16 23:39:54 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2014-07-16 23:39:54 +0200 |
commit | a04854932ec96ab48498fd4a5e8b5f4fd4df14cf (patch) | |
tree | 323bbd6014c52c9ded96a71f62b904e817b2e657 /src/charset.c | |
parent | 1f538355db5c344fd55c32dcb45834649536eea1 (diff) | |
download | vim-git-a04854932ec96ab48498fd4a5e8b5f4fd4df14cf.tar.gz |
updated for version 7.4.373v7.4.373
Problem: Compiler warning for unused argument and unused variable.
Solution: Add UNUSED. Move variable inside #ifdef.
Diffstat (limited to 'src/charset.c')
-rw-r--r-- | src/charset.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/charset.c b/src/charset.c index 83a6850df..e7aabe7ed 100644 --- a/src/charset.c +++ b/src/charset.c @@ -1024,7 +1024,7 @@ vim_isprintc_strict(c) */ int lbr_chartabsize(line, s, col) - char_u *line; /* start of the line */ + char_u *line UNUSED; /* start of the line */ unsigned char *s; colnr_T col; { @@ -1069,7 +1069,7 @@ lbr_chartabsize_adv(line, s, col) int win_lbr_chartabsize(wp, line, s, col, headp) win_T *wp; - char_u *line; /* start of the line */ + char_u *line UNUSED; /* start of the line */ char_u *s; colnr_T col; int *headp UNUSED; |