svn commit: trunk/busybox/scripts/config
vodz at busybox.net
vodz at busybox.net
Tue Jan 31 11:57:07 UTC 2006
Author: vodz
Date: 2006-01-31 03:57:06 -0800 (Tue, 31 Jan 2006)
New Revision: 13755
Log:
removed unneed signed, avoid warning
Modified:
trunk/busybox/scripts/config/conf.c
Changeset:
Modified: trunk/busybox/scripts/config/conf.c
===================================================================
--- trunk/busybox/scripts/config/conf.c 2006-01-31 11:29:22 UTC (rev 13754)
+++ trunk/busybox/scripts/config/conf.c 2006-01-31 11:57:06 UTC (rev 13755)
@@ -38,7 +38,7 @@
static void strip(char *str)
{
- signed char *p = str;
+ char *p = str;
int l;
while ((isspace(*p)))
More information about the busybox-cvs
mailing list