From owner-cvs-src@FreeBSD.ORG Fri Feb 27 08:25:06 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 863D216A4CF; Fri, 27 Feb 2004 08:25:06 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 69D5743D1F; Fri, 27 Feb 2004 08:25:06 -0800 (PST) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i1RGP6Ge090804; Fri, 27 Feb 2004 08:25:06 -0800 (PST) (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i1RGP6j6090803; Fri, 27 Feb 2004 08:25:06 -0800 (PST) (envelope-from jhb) Message-Id: <200402271625.i1RGP6j6090803@repoman.freebsd.org> From: John Baldwin Date: Fri, 27 Feb 2004 08:25:06 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/sys proc.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 27 Feb 2004 16:25:06 -0000 jhb 2004/02/27 08:25:06 PST FreeBSD src repository Modified files: sys/sys proc.h Log: Fix a few style nits. do { } while(0) are only used for compound statements and nowhere else in the kernel seems to use them for single statements. Also, all other users of do { } while(0) use multiple lines rather than cramming it all onto one line. Revision Changes Path 1.368 +3 -3 src/sys/sys/proc.h