Skip to content

Commit 98b30a4

Browse files
committed
patch 7.4.914
Problem: New compiler warning: logical-not-parentheses Solution: Silence the warning.
1 parent 72f4cc4 commit 98b30a4

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

src/term.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2276,7 +2276,7 @@ add_termcap_entry(name, force)
22762276
*/
22772277
for (i = 0; i < 2; ++i)
22782278
{
2279-
if (!builtin_first == i)
2279+
if ((!builtin_first) == i)
22802280
#endif
22812281
/*
22822282
* Search in builtin termcap

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -741,6 +741,8 @@ static char *(features[]) =
741741

742742
static int included_patches[] =
743743
{ /* Add new patch number below this line */
744+
/**/
745+
914,
744746
/**/
745747
913,
746748
/**/

0 commit comments

Comments
 (0)