chore(PVS/V768): don't use enum as bool.

This commit is contained in:
Dundar Göc 2021-07-12 18:20:50 +02:00
parent c36df20aef
commit 192c21ccde

View File

@ -1501,7 +1501,7 @@ int searchc(cmdarg_T *cap, int t_cmd)
FUNC_ATTR_NONNULL_ALL
{
int c = cap->nchar; // char to search for
Direction dir = cap->arg; // TRUE for searching forward
int dir = cap->arg; // true for searching forward
long count = cap->count1; // repeat count
int col;
char_u *p;