From 257af5b63194a5c969c4c71e826fea64a7237b1f Mon Sep 17 00:00:00 2001 From: Matthew Dillon Date: Tue, 15 Feb 2011 11:42:40 -0800 Subject: [PATCH] ps - Remove debugging printfs * Remove debug printfs that were accidently left in --- bin/ps/ps.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/bin/ps/ps.c b/bin/ps/ps.c index 29b6c7e839..1b1f096ceb 100644 --- a/bin/ps/ps.c +++ b/bin/ps/ps.c @@ -679,12 +679,10 @@ dochain (KINFO **ksort, int nentries) */ for (i = j = 0; i < nentries; ++i) { if (ksort[i]->ki_parent == NULL) { - printf("FFF\n"); ksort[i]->ki_indent = 0; j = dochain_final(kfinal, ksort[i], j); } } - printf("%d/%d\n", j, nentries); if (i != j) errx(1, "dochain failed"); -- 2.41.0