0
0
mirror of https://github.com/vim/vim.git synced 2025-09-27 04:14:06 -04:00

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.
This commit is contained in:
Bram Moolenaar
2018-05-13 14:05:18 +02:00
parent 7db25fed5d
commit b2ed680ba7
3 changed files with 7 additions and 5 deletions

View File

@@ -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 */
};
/*