svn commit: trunk/busybox/coreutils
landley at busybox.net
landley at busybox.net
Fri Sep 22 19:11:59 UTC 2006
Author: landley
Date: 2006-09-22 12:11:59 -0700 (Fri, 22 Sep 2006)
New Revision: 16192
Log:
Follow-up to 16172: this also doesn't produce a warning for me on gcc 4.1,
without having to feed the compiler nonsense.
Modified:
trunk/busybox/coreutils/uudecode.c
Changeset:
Modified: trunk/busybox/coreutils/uudecode.c
===================================================================
--- trunk/busybox/coreutils/uudecode.c 2006-09-22 18:47:45 UTC (rev 16191)
+++ trunk/busybox/coreutils/uudecode.c 2006-09-22 19:11:59 UTC (rev 16192)
@@ -125,7 +125,6 @@
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 @@
/* 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) {
More information about the busybox-cvs
mailing list