Merge pull request #15070 from dundargoc/PVS/V768

[RDY] chore(PVS/V768): don't use enum as bool.
This commit is contained in:
James McCoy 2021-07-19 11:29:09 -04:00 committed by GitHub
commit 3b2a85ff76
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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;