From owner-svn-src-head@freebsd.org Mon May 21 05:00:21 2018 Return-Path: Delivered-To: svn-src-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4DD39EE2C02; Mon, 21 May 2018 05:00:21 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id EFF866C9D7; Mon, 21 May 2018 05:00:20 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id CFDE320624; Mon, 21 May 2018 05:00:20 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w4L50Kmu011769; Mon, 21 May 2018 05:00:20 GMT (envelope-from eadler@FreeBSD.org) Received: (from eadler@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w4L50Kpl011766; Mon, 21 May 2018 05:00:20 GMT (envelope-from eadler@FreeBSD.org) Message-Id: <201805210500.w4L50Kpl011766@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: eadler set sender to eadler@FreeBSD.org using -f From: Eitan Adler Date: Mon, 21 May 2018 05:00:20 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r333965 - in head: . usr.bin/top X-SVN-Group: head X-SVN-Commit-Author: eadler X-SVN-Commit-Paths: in head: . usr.bin/top X-SVN-Commit-Revision: 333965 X-SVN-Commit-Repository: base MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.26 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: Mon, 21 May 2018 05:00:21 -0000 Author: eadler Date: Mon May 21 05:00:19 2018 New Revision: 333965 URL: https://svnweb.freebsd.org/changeset/base/333965 Log: top(1): add myself as a MAINTAIENR also fix some nits Modified: head/MAINTAINERS head/usr.bin/top/username.h head/usr.bin/top/utils.c Modified: head/MAINTAINERS ============================================================================== --- head/MAINTAINERS Mon May 21 04:51:43 2018 (r333964) +++ head/MAINTAINERS Mon May 21 05:00:19 2018 (r333965) @@ -99,6 +99,7 @@ sys/netpfil/pf kp,glebius Pre-commit review recommende sys/x86/xen royger Pre-commit review recommended. sys/xen royger Pre-commit review recommended. tests freebsd-testing,ngie Pre-commit review requested. +top(1) eadler Pre-commit review requested. usr.sbin/bsdconfig dteske Pre-commit phabricator review requested. usr.sbin/dpv dteske Pre-commit review requested. Keep in sync with libdpv. usr.sbin/pkg pkg@ Please coordinate behavior or flag changes with pkg team. Modified: head/usr.bin/top/username.h ============================================================================== --- head/usr.bin/top/username.h Mon May 21 04:51:43 2018 (r333964) +++ head/usr.bin/top/username.h Mon May 21 05:00:19 2018 (r333965) @@ -1,7 +1,4 @@ /* - * Top users/processes display for Unix - * Version 3 - * * This program may be freely redistributed, * but this entire comment MUST remain intact. * Modified: head/usr.bin/top/utils.c ============================================================================== --- head/usr.bin/top/utils.c Mon May 21 04:51:43 2018 (r333964) +++ head/usr.bin/top/utils.c Mon May 21 05:00:19 2018 (r333965) @@ -1,7 +1,4 @@ /* - * Top users/processes display for Unix - * Version 3 - * * This program may be freely redistributed, * but this entire comment MUST remain intact. * @@ -397,10 +394,7 @@ long seconds; #define NUM_STRINGS 8 -char *format_k(amt) - -int amt; - +char *format_k(int amt) { static char retarray[NUM_STRINGS][16]; static int index = 0;