svn commit: trunk/busybox/scripts/config

landley at busybox.net landley at busybox.net
Mon Dec 19 16:30:34 UTC 2005


Author: landley
Date: 2005-12-19 08:30:33 -0800 (Mon, 19 Dec 2005)
New Revision: 12953

Log:
Make a few warnings go away.


Modified:
   trunk/busybox/scripts/config/conf.c
   trunk/busybox/scripts/config/confdata.c


Changeset:
Modified: trunk/busybox/scripts/config/conf.c
===================================================================
--- trunk/busybox/scripts/config/conf.c	2005-12-19 16:29:19 UTC (rev 12952)
+++ trunk/busybox/scripts/config/conf.c	2005-12-19 16:30:33 UTC (rev 12953)
@@ -31,12 +31,12 @@
 static int indent = 1;
 static int valid_stdin = 1;
 static int conf_cnt;
-static signed char line[128];
+static char line[128];
 static struct menu *rootEntry;
 
 static char nohelp_text[] = "Sorry, no help available for this option yet.\n";
 
-static void strip(signed char *str)
+static void strip(char *str)
 {
 	signed char *p = str;
 	int l;

Modified: trunk/busybox/scripts/config/confdata.c
===================================================================
--- trunk/busybox/scripts/config/confdata.c	2005-12-19 16:29:19 UTC (rev 12952)
+++ trunk/busybox/scripts/config/confdata.c	2005-12-19 16:30:33 UTC (rev 12953)
@@ -23,10 +23,10 @@
 	NULL,
 };
 
-static char *conf_expand_value(const signed char *in)
+static char *conf_expand_value(const char *in)
 {
 	struct symbol *sym;
-	const signed char *src;
+	const char *src;
 	static char res_value[SYMBOL_MAXLENGTH];
 	char *dst, name[SYMBOL_MAXLENGTH];
 




More information about the busybox-cvs mailing list