From 4e4e09596dc1fc6fa74088a8ee6394ce60a8a513 Mon Sep 17 00:00:00 2001 From: Peter Wemm Date: Tue, 3 Sep 1996 14:24:44 +0000 Subject: [PATCH] eek, how did that happen? I must have committed something left over from when I was experimenting looking for an alternate format. *blush* --- bin/sh/miscbltin.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/bin/sh/miscbltin.c b/bin/sh/miscbltin.c index 4122ac5aa69b..60311dd319f7 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