From: Bram Moolenaar Date: Sat, 15 May 2010 12:49:02 +0000 (+0200) Subject: Small fix for compiler warning in Netbeans. X-Git-Tag: v7.3~397 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0b65f8938b98a68176c87f75476290415d05438a;p=vim Small fix for compiler warning in Netbeans. --- 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;