aboutsummaryrefslogtreecommitdiff
path: root/coreutils/uudecode.c
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2006-09-22 19:11:59 +0000
committerRob Landley <rob@landley.net>2006-09-22 19:11:59 +0000
commitb97f07f5a10b33ba115a7eb60acc25dfc86b3f55 (patch)
tree2998b483fb3ac30735174d623a16aaa1e08ebd86 /coreutils/uudecode.c
parent03721973851afbe02bbc1cdc56ee6002631c4df6 (diff)
downloadbusybox-b97f07f5a10b33ba115a7eb60acc25dfc86b3f55.tar.gz
Follow-up to 16172: this also doesn't produce a warning for me on gcc 4.1,
without having to feed the compiler nonsense.
Diffstat (limited to 'coreutils/uudecode.c')
-rw-r--r--coreutils/uudecode.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/uudecode.c b/coreutils/uudecode.c
index b87c33dc7..1df143f9d 100644
--- a/coreutils/uudecode.c
+++ b/coreutils/uudecode.c
@@ -125,7 +125,6 @@ static int read_base64(FILE *src_stream, FILE *dst_stream)
int uudecode_main(int argc, char **argv)
{
- int (*decode_fn_ptr)(FILE * src, FILE * dst) = read_stduu; /* silence gcc */
FILE *src_stream;
char *outname = NULL;
char *line;
@@ -142,6 +141,7 @@ int uudecode_main(int argc, char **argv)
/* Search for the start of the encoding */
while ((line = bb_get_chomped_line_from_file(src_stream)) != NULL) {
+ int (*decode_fn_ptr)(FILE * src, FILE * dst);
char *line_ptr = NULL;
if (strncmp(line, "begin-base64 ", 13) == 0) {