From b9485b8d524faf4cc22bc44901464f13e79536ea Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Thu, 26 Oct 1995 13:20:25 +0000 Subject: [PATCH] (main): Use xfopen, not xtmpopen to open final output file. --- src/sort.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sort.c b/src/sort.c index edae0f8..f6c4f07 100644 --- a/src/sort.c +++ b/src/sort.c @@ -1857,7 +1857,7 @@ main (int argc, char **argv) files[i] = tmp; } } - ofp = xtmpfopen (outfile); + ofp = xfopen (outfile, "w"); } else ofp = stdout; -- 2.7.4