aboutsummaryrefslogtreecommitdiff
path: root/coreutils/tr.c
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2001-10-31 10:41:31 +0000
committerEric Andersen <andersen@codepoet.org>2001-10-31 10:41:31 +0000
commiteaecbf33f70c0eed2f9a60b392e5782e03a9be2f (patch)
tree0080fd0c339ed1943275d4e2df23612ee50e0c37 /coreutils/tr.c
parent69a20f0aca1f4146210fe8c39c8638671e6558c5 (diff)
downloadbusybox-w32-eaecbf33f70c0eed2f9a60b392e5782e03a9be2f.tar.gz
busybox-w32-eaecbf33f70c0eed2f9a60b392e5782e03a9be2f.tar.bz2
busybox-w32-eaecbf33f70c0eed2f9a60b392e5782e03a9be2f.zip
Fixup some silly prototype warnings
Diffstat (limited to 'coreutils/tr.c')
-rw-r--r--coreutils/tr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/tr.c b/coreutils/tr.c
index 2665d926f..e2a4ef6c5 100644
--- a/coreutils/tr.c
+++ b/coreutils/tr.c
@@ -44,7 +44,7 @@ static unsigned char *pvector;
44static char *pinvec, *poutvec; 44static char *pinvec, *poutvec;
45 45
46 46
47static void convert() 47static void convert(void)
48{ 48{
49 short read_chars = 0; 49 short read_chars = 0;
50 short c, coded; 50 short c, coded;