From 0b65f8938b98a68176c87f75476290415d05438a Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Sat, 15 May 2010 14:49:02 +0200 Subject: [PATCH] Small fix for compiler warning in Netbeans. --- src/netbeans.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/netbeans.c b/src/netbeans.c index ed0cd05b6..94c1aaadf 100644 --- a/src/netbeans.c +++ b/src/netbeans.c @@ -731,7 +731,7 @@ messageFromNetbeans(gpointer clientData UNUSED, #endif { static char_u *buf = NULL; - int len; + int len = 0; int readlen = 0; #ifndef FEAT_GUI_GTK static int level = 0; -- 2.50.1