diff src/scriptfile.c @ 21495:4c1a929fde80 v8.2.1298

patch 8.2.1298: compiler warning for unused argument in small version Commit: https://github.com/vim/vim/commit/cb4f69c2fd9ea81331c4aa54877fde612d182a51 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Jul 26 15:51:06 2020 +0200 patch 8.2.1298: compiler warning for unused argument in small version Problem: Compiler warning for unused argument in small version. Solution: Add UNUSED.
author Bram Moolenaar <Bram@vim.org>
date Sun, 26 Jul 2020 16:00:05 +0200
parents 7449921216bc
children 766839794e09
line wrap: on
line diff
--- 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