From owner-cvs-all Tue Aug 18 18:32:34 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA20216 for cvs-all-outgoing; Tue, 18 Aug 1998 18:32:34 -0700 (PDT) (envelope-from owner-cvs-all) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA20209; Tue, 18 Aug 1998 18:32:32 -0700 (PDT) (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id SAA19791; Tue, 18 Aug 1998 18:32:29 -0700 (PDT) Date: Tue, 18 Aug 1998 18:32:29 -0700 (PDT) Message-Id: <199808190132.SAA19791@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/pstat pstat.c Sender: owner-cvs-all@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk bde 1998/08/18 18:32:29 PDT Modified files: usr.sbin/pstat pstat.c Log: Increased column widths for tty input watermark fields so that watermarks for 11520-byte buffers for 115200 bps are displayed properly. Fixed my recent printf format error fixes. %p is almost unusable in tables, since its width and format are unknown/machine-dependent. Use %8lx and cast pointers to (u_long)(void*). This is still quite broken, e.g., for machines with 64-bit pointers. Revision Changes Path 1.37 +10 -9 src/usr.sbin/pstat/pstat.c