From owner-cvs-src@FreeBSD.ORG Tue Feb 14 09:33:52 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org 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 59A9C16A420; Tue, 14 Feb 2006 09:33:52 +0000 (GMT) (envelope-from bde@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 133A143D45; Tue, 14 Feb 2006 09:33:52 +0000 (GMT) (envelope-from bde@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id k1E9XpBU081353; Tue, 14 Feb 2006 09:33:51 GMT (envelope-from bde@repoman.freebsd.org) Received: (from bde@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id k1E9Xp9S081352; Tue, 14 Feb 2006 09:33:51 GMT (envelope-from bde) Message-Id: <200602140933.k1E9Xp9S081352@repoman.freebsd.org> From: Bruce Evans Date: Tue, 14 Feb 2006 09:33:51 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/usr.bin/systat vmstat.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 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: Tue, 14 Feb 2006 09:33:52 -0000 bde 2006-02-14 09:33:51 UTC FreeBSD src repository Modified files: usr.bin/systat vmstat.c Log: Oops, the "excessive" {} removed in the previous commit was needed around PUTRATE() because PUTRATE() only looked like a function -- it was multiple statements. Use "do {...} while(0)" as usual in PUTRATE() so that it is a single statement that can be used like a function. Revision Changes Path 1.64 +3 -1 src/usr.bin/systat/vmstat.c