diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-01-30 01:11:36 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-01-30 01:11:36 +0000 |
commit | 54767db8c753e6372aa8619051502034edc03f7e (patch) | |
tree | ff81f9d9a0cbb7ec1d01c26ed3552821dbbc12bb /editors/sed.c | |
parent | 27a131e08e97acc2371421ddab9cf9372acffbb3 (diff) | |
download | busybox-w32-54767db8c753e6372aa8619051502034edc03f7e.tar.gz busybox-w32-54767db8c753e6372aa8619051502034edc03f7e.tar.bz2 busybox-w32-54767db8c753e6372aa8619051502034edc03f7e.zip |
micro optimization
Diffstat (limited to 'editors/sed.c')
-rw-r--r-- | editors/sed.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 { | |||
89 | struct sed_cmd_s *next; /* Next command (linked list, NULL terminated) */ | 89 | struct sed_cmd_s *next; /* Next command (linked list, NULL terminated) */ |
90 | } sed_cmd_t; | 90 | } sed_cmd_t; |
91 | 91 | ||
92 | static const char *const semicolon_whitespace = "; \n\r\t\v"; | 92 | static const char semicolon_whitespace[] = "; \n\r\t\v"; |
93 | 93 | ||
94 | struct sed_globals { | 94 | struct sed_globals { |
95 | /* options */ | 95 | /* options */ |