From owner-svn-src-head@FreeBSD.ORG Thu Oct 29 10:03:09 2009 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0483C106566B; Thu, 29 Oct 2009 10:03:09 +0000 (UTC) (envelope-from kib@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id E807B8FC16; Thu, 29 Oct 2009 10:03:08 +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 n9TA38xQ091070; Thu, 29 Oct 2009 10:03:08 GMT (envelope-from kib@svn.freebsd.org) Received: (from kib@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n9TA38an091068; Thu, 29 Oct 2009 10:03:08 GMT (envelope-from kib@svn.freebsd.org) Message-Id: <200910291003.n9TA38an091068@svn.freebsd.org> From: Konstantin Belousov Date: Thu, 29 Oct 2009 10:03:08 +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: r198575 - head/sys/kern X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.5 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: Thu, 29 Oct 2009 10:03:09 -0000 Author: kib Date: Thu Oct 29 10:03:08 2009 New Revision: 198575 URL: http://svn.freebsd.org/changeset/base/198575 Log: Fix style issue. Modified: head/sys/kern/uipc_syscalls.c Modified: head/sys/kern/uipc_syscalls.c ============================================================================== --- head/sys/kern/uipc_syscalls.c Thu Oct 29 09:58:16 2009 (r198574) +++ head/sys/kern/uipc_syscalls.c Thu Oct 29 10:03:08 2009 (r198575) @@ -2016,7 +2016,7 @@ retry_space: * Loop and construct maximum sized mbuf chain to be bulk * dumped into socket buffer. */ - while(space > loopbytes) { + while (space > loopbytes) { vm_pindex_t pindex; vm_offset_t pgoff; struct mbuf *m0;