Fix dos2unix/tr problem noted by Larry Doolittle.

This commit is contained in:
Matt Kraai
2001-04-12 21:38:06 +00:00
parent d6cde0bcf4
commit 1e04ea388f
4 changed files with 4 additions and 4 deletions

View File

@ -32,7 +32,7 @@
#include "busybox.h"
// if fn is NULL then input is stdin and output is stdout
extern int convert(char *fn, int ConvType) {
static int convert(char *fn, int ConvType) {
char c;
char *tempFn = NULL;
FILE *in = stdin, *out = stdout;