diff options
author | Bram Moolenaar <Bram@vim.org> | 2020-07-26 15:51:06 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2020-07-26 15:51:06 +0200 |
commit | cb4f69c2fd9ea81331c4aa54877fde612d182a51 (patch) | |
tree | 3471514cfe8b056f1ffe706a91b34b637cf9108c /src/scriptfile.c | |
parent | a5d0423fa16f18b4576a2a07e50034e489587a7d (diff) | |
download | vim-git-cb4f69c2fd9ea81331c4aa54877fde612d182a51.tar.gz |
patch 8.2.1298: compiler warning for unused argument in small versionv8.2.1298
Problem: Compiler warning for unused argument in small version.
Solution: Add UNUSED.
Diffstat (limited to 'src/scriptfile.c')
-rw-r--r-- | src/scriptfile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/scriptfile.c b/src/scriptfile.c index ce9c15d31..2a8320832 100644 --- a/src/scriptfile.c +++ b/src/scriptfile.c @@ -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 |