diff src/search.c @ 7019:db0328a2fa2a v7.4.826

patch 7.4.826 Problem: Compiler warnings and errors. Solution: Make it build properly without the multi-byte feature.
author Bram Moolenaar <bram@vim.org>
date Thu, 13 Aug 2015 23:28:43 +0200
parents 814f1f569e4a
children 3a1a6d6fb9b3
line wrap: on
line diff
--- a/src/search.c
+++ b/src/search.c
@@ -451,8 +451,8 @@ last_csearch_until()
     void
 set_last_csearch(c, s, len)
     int		c;
-    char_u	*s;
-    int		len;
+    char_u	*s UNUSED;
+    int		len UNUSED;
 {
     *lastc = c;
 #ifdef FEAT_MBYTE