[BusyBox-cvs] svn commit: trunk/busybox/coreutils

pgf at busybox.net pgf at busybox.net
Wed Jul 20 19:07:28 UTC 2005


Author: pgf
Date: 2005-07-20 13:07:27 -0600 (Wed, 20 Jul 2005)
New Revision: 10879

Log:
applying patch from:
    0000227: sort use wrong type for getopt return variable



Modified:
   trunk/busybox/coreutils/sort.c


Changeset:
Modified: trunk/busybox/coreutils/sort.c
===================================================================
--- trunk/busybox/coreutils/sort.c	2005-07-20 19:01:05 UTC (rev 10878)
+++ trunk/busybox/coreutils/sort.c	2005-07-20 19:07:27 UTC (rev 10879)
@@ -239,7 +239,8 @@
 {
 	FILE *fp,*outfile=NULL;
 	int linecount=0,i,flag;
-	char *line,**lines=NULL,c,*optlist="ngMucszbrdfimS:T:o:k:t:";
+	char *line,**lines=NULL,*optlist="ngMucszbrdfimS:T:o:k:t:";
+	int c;
 
 	bb_default_error_retval = 2;
 	/* Parse command line options */




More information about the busybox-cvs mailing list