From 802053f14ac4da63c027df2f1a8333c9a26da7dc Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Wed, 6 Jun 2012 23:08:38 +0200 Subject: updated for version 7.3.547 Problem: Compiler warning for uninitialized variable. Solution: Initialize it. --- src/ops.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/ops.c') diff --git a/src/ops.c b/src/ops.c index c1666ac69..ca327b955 100644 --- a/src/ops.c +++ b/src/ops.c @@ -4306,7 +4306,7 @@ do_join(count, insert_space, save_undo, use_formatoptions) 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; -- cgit v1.2.1