diff options
author | Eric Andersen | 2001-10-31 10:41:31 +0000 |
---|---|---|
committer | Eric Andersen | 2001-10-31 10:41:31 +0000 |
commit | eaecbf33f70c0eed2f9a60b392e5782e03a9be2f (patch) | |
tree | 0080fd0c339ed1943275d4e2df23612ee50e0c37 /coreutils/tr.c | |
parent | 69a20f0aca1f4146210fe8c39c8638671e6558c5 (diff) | |
download | busybox-eaecbf33f70c0eed2f9a60b392e5782e03a9be2f.zip busybox-eaecbf33f70c0eed2f9a60b392e5782e03a9be2f.tar.gz |
Fixup some silly prototype warnings
Diffstat (limited to 'coreutils/tr.c')
-rw-r--r-- | coreutils/tr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/tr.c b/coreutils/tr.c index 2665d92..e2a4ef6 100644 --- a/coreutils/tr.c +++ b/coreutils/tr.c @@ -44,7 +44,7 @@ static unsigned char *pvector; static char *pinvec, *poutvec; -static void convert() +static void convert(void) { short read_chars = 0; short c, coded; |