micro optimization
authorDenis Vlasenko <vda.linux@googlemail.com>
Tue, 30 Jan 2007 01:11:36 +0000 (01:11 -0000)
committerDenis Vlasenko <vda.linux@googlemail.com>
Tue, 30 Jan 2007 01:11:36 +0000 (01:11 -0000)
editors/sed.c

index c0ad3c4d5c6c41848d480c94b5c5d7b9da807228..28121bad56da3529d76f9c9bcfea4dde36a16f16 100644 (file)
@@ -89,7 +89,7 @@ typedef struct sed_cmd_s {
        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 */