aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlandley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-09-22 19:11:59 +0000
committerlandley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-09-22 19:11:59 +0000
commit35c839d7eab1eb2b062cb982283d5ec5d5b86658 (patch)
tree2998b483fb3ac30735174d623a16aaa1e08ebd86
parent7a3ff737dd7dd4b58fc3611ab031a72e38103f93 (diff)
downloadbusybox-w32-35c839d7eab1eb2b062cb982283d5ec5d5b86658.tar.gz
busybox-w32-35c839d7eab1eb2b062cb982283d5ec5d5b86658.tar.bz2
busybox-w32-35c839d7eab1eb2b062cb982283d5ec5d5b86658.zip
Follow-up to 16172: this also doesn't produce a warning for me on gcc 4.1,
without having to feed the compiler nonsense. git-svn-id: svn://busybox.net/trunk/busybox@16192 69ca8d6d-28ef-0310-b511-8ec308f3f277
-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)
125 125
126int uudecode_main(int argc, char **argv) 126int uudecode_main(int argc, char **argv)
127{ 127{
128 int (*decode_fn_ptr)(FILE * src, FILE * dst) = read_stduu; /* silence gcc */
129 FILE *src_stream; 128 FILE *src_stream;
130 char *outname = NULL; 129 char *outname = NULL;
131 char *line; 130 char *line;
@@ -142,6 +141,7 @@ int uudecode_main(int argc, char **argv)
142 141
143 /* Search for the start of the encoding */ 142 /* Search for the start of the encoding */
144 while ((line = bb_get_chomped_line_from_file(src_stream)) != NULL) { 143 while ((line = bb_get_chomped_line_from_file(src_stream)) != NULL) {
144 int (*decode_fn_ptr)(FILE * src, FILE * dst);
145 char *line_ptr = NULL; 145 char *line_ptr = NULL;
146 146
147 if (strncmp(line, "begin-base64 ", 13) == 0) { 147 if (strncmp(line, "begin-base64 ", 13) == 0) {