From owner-svn-src-all@FreeBSD.ORG Fri Sep 18 09:03:23 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 CD61E1065672; Fri, 18 Sep 2009 09:03:23 +0000 (UTC) (envelope-from zec@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id BE35D8FC0C; Fri, 18 Sep 2009 09:03:23 +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 n8I93NON083950; Fri, 18 Sep 2009 09:03:23 GMT (envelope-from zec@svn.freebsd.org) Received: (from zec@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n8I93NQF083949; Fri, 18 Sep 2009 09:03:23 GMT (envelope-from zec@svn.freebsd.org) Message-Id: <200909180903.n8I93NQF083949@svn.freebsd.org> From: Marko Zec Date: Fri, 18 Sep 2009 09:03:23 +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: r197306 - head/sys/net 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, 18 Sep 2009 09:03:23 -0000 Author: zec Date: Fri Sep 18 09:03:23 2009 New Revision: 197306 URL: http://svn.freebsd.org/changeset/base/197306 Log: Style fix - break too long a line in two. Spotted by: bz MFC after: 3 days Modified: head/sys/net/if_llatbl.c Modified: head/sys/net/if_llatbl.c ============================================================================== --- head/sys/net/if_llatbl.c Fri Sep 18 08:02:56 2009 (r197305) +++ head/sys/net/if_llatbl.c Fri Sep 18 09:03:23 2009 (r197306) @@ -377,5 +377,6 @@ vnet_lltable_init() SLIST_INIT(&V_lltables); } -VNET_SYSINIT(vnet_lltable_init, SI_SUB_PSEUDO, SI_ORDER_FIRST, vnet_lltable_init, NULL); +VNET_SYSINIT(vnet_lltable_init, SI_SUB_PSEUDO, SI_ORDER_FIRST, + vnet_lltable_init, NULL);