From owner-svn-src-head@freebsd.org Wed Apr 12 21:15:57 2017 Return-Path: Delivered-To: svn-src-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 12E62D3BA20; Wed, 12 Apr 2017 21:15:57 +0000 (UTC) (envelope-from jilles@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 mx1.freebsd.org (Postfix) with ESMTPS id D7806F47; Wed, 12 Apr 2017 21:15:56 +0000 (UTC) (envelope-from jilles@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v3CLFtVK044575; Wed, 12 Apr 2017 21:15:55 GMT (envelope-from jilles@FreeBSD.org) Received: (from jilles@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v3CLFtSY044574; Wed, 12 Apr 2017 21:15:55 GMT (envelope-from jilles@FreeBSD.org) Message-Id: <201704122115.v3CLFtSY044574@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jilles set sender to jilles@FreeBSD.org using -f From: Jilles Tjoelker Date: Wed, 12 Apr 2017 21:15:55 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r316744 - head/bin/sh X-SVN-Group: head 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.23 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: Wed, 12 Apr 2017 21:15:57 -0000 Author: jilles Date: Wed Apr 12 21:15:55 2017 New Revision: 316744 URL: https://svnweb.freebsd.org/changeset/base/316744 Log: sh: Reduce size of limits table. Modified: head/bin/sh/miscbltin.c Modified: head/bin/sh/miscbltin.c ============================================================================== --- head/bin/sh/miscbltin.c Wed Apr 12 20:27:15 2017 (r316743) +++ head/bin/sh/miscbltin.c Wed Apr 12 21:15:55 2017 (r316744) @@ -367,7 +367,7 @@ struct limits { const char *name; const char *units; int cmd; - int factor; /* multiply by to get rlim_{cur,max} values */ + short factor; /* multiply by to get rlim_{cur,max} values */ char option; };