diff options
author | peter <peter@FreeBSD.org> | 1996-09-03 14:24:44 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1996-09-03 14:24:44 +0000 |
commit | ad9b91037fe27c080ad2621696ce946fffdee225 (patch) | |
tree | d291325e7c91f0cf597efe63f8d531d0ccf3bae3 /bin/sh | |
parent | 0475c084c22d974adb50e049f8526e7ba3325c20 (diff) | |
download | FreeBSD-src-ad9b91037fe27c080ad2621696ce946fffdee225.zip FreeBSD-src-ad9b91037fe27c080ad2621696ce946fffdee225.tar.gz |
eek, how did that happen? I must have committed something left over from
when I was experimenting looking for an alternate format. *blush*
Diffstat (limited to 'bin/sh')
-rw-r--r-- | bin/sh/miscbltin.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/bin/sh/miscbltin.c b/bin/sh/miscbltin.c index 4122ac5..60311dd 100644 --- a/bin/sh/miscbltin.c +++ b/bin/sh/miscbltin.c @@ -33,7 +33,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: miscbltin.c,v 1.6 1996/09/03 13:35:10 peter Exp $ + * $Id: miscbltin.c,v 1.7 1996/09/03 14:15:54 peter Exp $ */ #ifndef lint @@ -356,11 +356,11 @@ ulimitcmd(argc, argv) if (l->units) snprintf(optbuf, sizeof(optbuf), - "%s (%s, -%c) ", l->name, l->units, l->option); + "(%s, -%c) ", l->units, l->option); else snprintf(optbuf, sizeof(optbuf), - "%s (-%c) ", l->name, l->option); - out1fmt("%32s ", optbuf); + "(-%c) ", l->option); + out1fmt("%-18s %18s ", l->name, optbuf); if (val == RLIM_INFINITY) out1fmt("unlimited\n"); else |