svn commit: r316744 - head/bin/sh
Jilles Tjoelker
jilles at FreeBSD.org
Wed Apr 12 21:15:57 UTC 2017
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;
};
More information about the svn-src-all
mailing list