From owner-svn-src-all@FreeBSD.ORG Fri Sep 25 02:19:58 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 521F0106566C; Fri, 25 Sep 2009 02:19:58 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 27CCC8FC08; Fri, 25 Sep 2009 02:19:58 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n8P2Jw07013954; Fri, 25 Sep 2009 02:19:58 GMT (envelope-from delphij@svn.freebsd.org) Received: (from delphij@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n8P2JwWT013952; Fri, 25 Sep 2009 02:19:58 GMT (envelope-from delphij@svn.freebsd.org) Message-Id: <200909250219.n8P2JwWT013952@svn.freebsd.org> From: Xin LI Date: Fri, 25 Sep 2009 02:19:58 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r197478 - head/sys/dev/fb X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Sep 2009 02:19:58 -0000 Author: delphij Date: Fri Sep 25 02:19:57 2009 New Revision: 197478 URL: http://svn.freebsd.org/changeset/base/197478 Log: Fix LINT build. Modified: head/sys/dev/fb/vesa.c Modified: head/sys/dev/fb/vesa.c ============================================================================== --- head/sys/dev/fb/vesa.c Fri Sep 25 00:15:30 2009 (r197477) +++ head/sys/dev/fb/vesa.c Fri Sep 25 02:19:57 2009 (r197478) @@ -1049,7 +1049,7 @@ static int vesa_set_mode(video_adapter_t *adp, int mode) { video_info_t info; - int len; + int len = 0; if (adp != vesa_adp) return (*prevvidsw->set_mode)(adp, mode);