From owner-svn-src-head@FreeBSD.ORG Fri Sep 12 20:55:17 2014 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id ACF22EEB; Fri, 12 Sep 2014 20:55:17 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 98C92855; Fri, 12 Sep 2014 20:55:17 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s8CKtHlG055988; Fri, 12 Sep 2014 20:55:17 GMT (envelope-from ray@FreeBSD.org) Received: (from ray@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s8CKtHLW055986; Fri, 12 Sep 2014 20:55:17 GMT (envelope-from ray@FreeBSD.org) Message-Id: <201409122055.s8CKtHLW055986@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: ray set sender to ray@FreeBSD.org using -f From: Aleksandr Rybalko Date: Fri, 12 Sep 2014 20:55:17 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r271485 - head/sys/dev/vt X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Sep 2014 20:55:17 -0000 Author: ray Date: Fri Sep 12 20:55:17 2014 New Revision: 271485 URL: http://svnweb.freebsd.org/changeset/base/271485 Log: Fix 'function declaration isn't a prototype' warning. Pointed by: ian MFC after: 1 week Modified: head/sys/dev/vt/vt_core.c Modified: head/sys/dev/vt/vt_core.c ============================================================================== --- head/sys/dev/vt/vt_core.c Fri Sep 12 20:34:19 2014 (r271484) +++ head/sys/dev/vt/vt_core.c Fri Sep 12 20:55:17 2014 (r271485) @@ -162,7 +162,7 @@ static int vt_late_window_switch(struct static int vt_proc_alive(struct vt_window *); static void vt_resize(struct vt_device *); static void vt_update_static(void *); -static void vt_mouse_paste(); +static void vt_mouse_paste(void); SET_DECLARE(vt_drv_set, struct vt_driver);