mirror of
https://github.com/vim/vim.git
synced 2025-09-23 03:43:49 -04:00
patch 8.2.0506: Coverity complains about ignoring return value
Problem: Coverity complains about ignoring return value. Solution: Add (void).
This commit is contained in:
@@ -1321,7 +1321,7 @@ call_user_func(
|
||||
// A Lambda always has the command "return {expr}". It is much faster
|
||||
// to evaluate {expr} directly.
|
||||
++ex_nesting_level;
|
||||
eval1(&p, rettv, TRUE);
|
||||
(void)eval1(&p, rettv, TRUE);
|
||||
--ex_nesting_level;
|
||||
}
|
||||
else
|
||||
|
@@ -738,6 +738,8 @@ static char *(features[]) =
|
||||
|
||||
static int included_patches[] =
|
||||
{ /* Add new patch number below this line */
|
||||
/**/
|
||||
506,
|
||||
/**/
|
||||
505,
|
||||
/**/
|
||||
|
Reference in New Issue
Block a user