diff options
author | Bram Moolenaar <Bram@vim.org> | 2015-02-05 20:29:59 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2015-02-05 20:29:59 +0100 |
commit | 168e04966c48b0d7d4726934ed2c39a9a0fec2af (patch) | |
tree | 7a0fb9c5abdad4c8f2016b1e4803fe1a1ddf21bf /src/regexp_nfa.c | |
parent | f554a3285e45d8c3f95f9b8f43bd0897185b95cb (diff) | |
download | vim-git-168e04966c48b0d7d4726934ed2c39a9a0fec2af.tar.gz |
updated for version 7.4.622v7.4.622
Problem: Compiler warning for unused argument.
Solution: Add UNUSED.
Diffstat (limited to 'src/regexp_nfa.c')
-rw-r--r-- | src/regexp_nfa.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/regexp_nfa.c b/src/regexp_nfa.c index 1e16bd98a..77c787056 100644 --- a/src/regexp_nfa.c +++ b/src/regexp_nfa.c @@ -6838,7 +6838,7 @@ theend: nfa_regtry(prog, col, tm) nfa_regprog_T *prog; colnr_T col; - proftime_T *tm; /* timeout limit or NULL */ + proftime_T *tm UNUSED; /* timeout limit or NULL */ { int i; regsubs_T subs, m; |