diff src/structs.h @ 13913:3e5c24ecc313 v8.0.1827

patch 8.0.1827: compiler warning for signed/unsigned char pointers commit https://github.com/vim/vim/commit/b2ed680ba760ec5eb2c626363ecbda4dd2528794 Author: Bram Moolenaar <Bram@vim.org> Date: Sun May 13 14:05:18 2018 +0200 patch 8.0.1827: compiler warning for signed/unsigned char pointers Problem: Compiler warning for signed/unsigned char pointers. (Cesar Romani) Solution: Change the type of jv_argv.
author Christian Brabandt <cb@256bit.org>
date Sun, 13 May 2018 14:15:06 +0200
parents eadecbe4e390
children dc67449d648c
line wrap: on
line diff
--- a/src/structs.h
+++ b/src/structs.h
@@ -1488,7 +1488,7 @@ struct jobvar_S
     int		jv_copyID;
 
     channel_T	*jv_channel;	/* channel for I/O, reference counted */
-    char_u	**jv_argv;	/* command line used to start the job */
+    char	**jv_argv;	/* command line used to start the job */
 };
 
 /*