summaryrefslogtreecommitdiff
path: root/editors
diff options
context:
space:
mode:
authorRon Yorston <rmy@pobox.com>2021-07-13 16:35:43 +0100
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2021-07-13 18:23:43 +0200
commite6f4145f2961bfd500214ef1fcf07543ffacb603 (patch)
tree3cb76789a6ddff24cf00fdabf9350f67b07d6c52 /editors
parent36feb2682481d55ae49df899c38e16130227ba4a (diff)
downloadbusybox-e6f4145f2961bfd500214ef1fcf07543ffacb603.tar.gz
vi: fix regex search compilation error
Building with FEATURE_VI_REGEX_SEARCH enabled fails. Signed-off-by: Ron Yorston <rmy@pobox.com> Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'editors')
-rw-r--r--editors/vi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/vi.c b/editors/vi.c
index 5c601c759..a4b958734 100644
--- a/editors/vi.c
+++ b/editors/vi.c
@@ -2684,7 +2684,7 @@ static char *expand_args(char *args)
static char *strchr_backslash(const char *s, int c)
{
while (*s) {
- if (*s == c) {
+ if (*s == c)
return (char *)s;
if (*s == '\\')
if (*++s == '\0')