summaryrefslogtreecommitdiffstats
path: root/src/termlib.c
diff options
context:
space:
mode:
authorYegappan Lakshmanan <yegappan@yahoo.com>2021-06-05 20:59:22 +0200
committerBram Moolenaar <Bram@vim.org>2021-06-05 20:59:22 +0200
commit59b262362f26b3aaea1eeb0078adc33eed59863e (patch)
tree4b20477712f90b3c4e666c5338b673dbd1866057 /src/termlib.c
parent1328bde9d406aa1292e92673fa8a026889424e79 (diff)
patch 8.2.2945: some buffer related code is not testedv8.2.2945
Problem: Some buffer related code is not tested. Solution: Add a few more tests. (Yegappan Lakshmanan, closes #8320)
Diffstat (limited to 'src/termlib.c')
-rw-r--r--src/termlib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/termlib.c b/src/termlib.c
index e05daae5d4..7c845c5c36 100644
--- a/src/termlib.c
+++ b/src/termlib.c
@@ -591,7 +591,7 @@ _match(char *s1, char *s2)
static char *
_find(char *s, char *set)
{
- for(; *s; s++)
+ for (; *s; s++)
{
char *ptr = set;