commit | 802053f14ac4da63c027df2f1a8333c9a26da7dc | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Wed Jun 06 23:08:38 2012 +0200 |
committer | Bram Moolenaar <Bram@vim.org> | Wed Jun 06 23:08:38 2012 +0200 |
tree | 75c7d5542e155cabb9b26ad042e8ac6f59257c6b | |
parent | 3b393a0b537cd7057d3462ef16685b3957eb8e1a [diff] [blame] |
updated for version 7.3.547 Problem: Compiler warning for uninitialized variable. Solution: Initialize it.
diff --git a/src/ops.c b/src/ops.c index c1666ac..ca327b9 100644 --- a/src/ops.c +++ b/src/ops.c
@@ -4306,7 +4306,7 @@ colnr_T col = 0; int ret = OK; #if defined(FEAT_COMMENTS) || defined(PROTO) - int *comments; + int *comments = NULL; int remove_comments = (use_formatoptions == TRUE) && has_format_option(FO_REMOVE_COMS); int prev_was_comment;