From 0c2c94e1b79a355ab7ce0355aba041c47abe33bf Mon Sep 17 00:00:00 2001 From: Gabor Kovesdan Date: Sun, 27 Jan 2013 19:50:24 +0000 Subject: [PATCH] - Remove forgotten commented out debug code Submitted by: Christoph Mallon Reviewed by: Oleg Moskalenko --- usr.bin/sort/sort.c | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/usr.bin/sort/sort.c b/usr.bin/sort/sort.c index 4b7306b327c..7e0ab6914b4 100644 --- a/usr.bin/sort/sort.c +++ b/usr.bin/sort/sort.c @@ -986,21 +986,6 @@ main(int argc, char **argv) set_tmpdir(); set_sort_opts(); -#if 0 - { - static int counter = 0; - char fn[128]; - sprintf(fn, "/var/tmp/debug.sort.%d", counter++); - FILE* f = fopen(fn, "w"); - fprintf(f, ">>sort>>"); - for (int i = 0; i < argc; i++) { - fprintf(f, "<%s>", argv[i]); - } - fprintf(f, "<