From 54767db8c753e6372aa8619051502034edc03f7e Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Tue, 30 Jan 2007 01:11:36 +0000 Subject: [PATCH] micro optimization --- editors/sed.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/editors/sed.c b/editors/sed.c index c0ad3c4d5..28121bad5 100644 --- a/editors/sed.c +++ b/editors/sed.c @@ -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 */