From b6fe86f52f9707590a02a8246b632db9cba04838 Mon Sep 17 00:00:00 2001 From: araujo Date: Mon, 1 Jun 2015 06:00:04 +0000 Subject: Remove unused variable, this variable fmtstr was introduced at revision r225868 and it is not used anymore after the convertion to use libxo at revision r283304. Differential Revision: D2678 Reviewed by: marcel --- bin/ps/ps.c | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) (limited to 'bin/ps') diff --git a/bin/ps/ps.c b/bin/ps/ps.c index 0e5dd56..e86cfa8 100644 --- a/bin/ps/ps.c +++ b/bin/ps/ps.c @@ -180,7 +180,7 @@ main(int argc, char *argv[]) KINFO_STR *ks; struct varent *vent; struct winsize ws = { .ws_row = 0 }; - const char *nlistf, *memf, *fmtstr, *str; + const char *nlistf, *memf, *str; char *cols; int all, ch, elem, flag, _fmt, i, lineno, linelen, left; int descendancy, nentries, nkept, nselectors; @@ -649,11 +649,6 @@ main(int argc, char *argv[]) linelen = 0; xo_open_instance("process"); STAILQ_FOREACH(vent, &varlist, next_ve) { - if (vent->var->flag & LJUST) - fmtstr = "%-*s"; - else - fmtstr = "%*s"; - ks = STAILQ_FIRST(&kinfo[i].ki_ks); STAILQ_REMOVE_HEAD(&kinfo[i].ki_ks, ks_next); /* Truncate rightmost column if necessary. */ -- cgit v1.1