0
0
mirror of https://github.com/vim/vim.git synced 2025-09-24 03:44:06 -04:00

patch 8.2.1298: compiler warning for unused argument in small version

Problem:    Compiler warning for unused argument in small version.
Solution:   Add UNUSED.
This commit is contained in:
Bram Moolenaar
2020-07-26 15:51:06 +02:00
parent a5d0423fa1
commit cb4f69c2fd
2 changed files with 3 additions and 1 deletions

View File

@@ -114,7 +114,7 @@ estack_pop(void)
* "is_sfile" is TRUE for <sfile> itself.
*/
char_u *
estack_sfile(int is_sfile)
estack_sfile(int is_sfile UNUSED)
{
estack_T *entry;
#ifdef FEAT_EVAL