svn commit: trunk/busybox/editors

vda at busybox.net vda at busybox.net
Tue Jan 30 01:11:37 UTC 2007


Author: vda
Date: 2007-01-29 17:11:36 -0800 (Mon, 29 Jan 2007)
New Revision: 17666

Log:
micro optimization


Modified:
   trunk/busybox/editors/sed.c


Changeset:
Modified: trunk/busybox/editors/sed.c
===================================================================
--- trunk/busybox/editors/sed.c	2007-01-30 00:58:18 UTC (rev 17665)
+++ trunk/busybox/editors/sed.c	2007-01-30 01:11:36 UTC (rev 17666)
@@ -89,7 +89,7 @@
 	struct sed_cmd_s *next; /* Next command (linked list, NULL terminated) */
 } sed_cmd_t;
 
-static const char *const semicolon_whitespace = "; \n\r\t\v";
+static const char semicolon_whitespace[] = "; \n\r\t\v";
 
 struct sed_globals {
 	/* options */




More information about the busybox-cvs mailing list