diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1997-01-22 06:53:17 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1997-01-22 06:53:17 +0000 |
commit | 672d1eba50d9a38716d52ae6db6a2ace8dc4e080 (patch) | |
tree | 99d422abd5462ac90e56292a2a909cd803b8b79b /usr.bin/sort/msort.c | |
parent | 897b0345ef2583e68e7b355c29d59dd1aa0da209 (diff) |
Fix some err(3) usage and usage string.
Diffstat (limited to 'usr.bin/sort/msort.c')
-rw-r--r-- | usr.bin/sort/msort.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/sort/msort.c b/usr.bin/sort/msort.c index 5e2fc6556d6..dc3c9b3c39a 100644 --- a/usr.bin/sort/msort.c +++ b/usr.bin/sort/msort.c @@ -1,4 +1,4 @@ -/* $OpenBSD: msort.c,v 1.2 1997/01/22 06:43:53 millert Exp $ */ +/* $OpenBSD: msort.c,v 1.3 1997/01/22 06:53:15 millert Exp $ */ /*- * Copyright (c) 1993 @@ -40,7 +40,7 @@ #if 0 static char sccsid[] = "@(#)msort.c 8.1 (Berkeley) 6/6/93"; #else -static char rcsid[] = "$OpenBSD: msort.c,v 1.2 1997/01/22 06:43:53 millert Exp $"; +static char rcsid[] = "$OpenBSD: msort.c,v 1.3 1997/01/22 06:53:15 millert Exp $"; #endif #endif /* not lint */ @@ -119,7 +119,7 @@ fmerge(binno, files, nfiles, get, outfp, fput, ftbl) for (i = 0; i < last; i++) if (!(l_fstack[i+MAXFCT-1-16].fp = fopen(files.names[j + i], "r"))) - err(2, "%s", files.names[j+i]); + err(2, files.names[j+i]); merge(MAXFCT-1-16, last, get, tout, put, ftbl); } else { |