diff options
author | Bram Moolenaar <Bram@vim.org> | 2009-05-16 14:16:02 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2009-05-16 14:16:02 +0000 |
commit | 856b9fef3a20557b100202efd3610f26cec5bb71 (patch) | |
tree | 1f8cf5a868a7ce733b2b06b94ceb7d1a330c58bf /src | |
parent | 78a1531005adc6bfe435ee2b9207864688bea7e9 (diff) | |
download | vim-git-856b9fef3a20557b100202efd3610f26cec5bb71.tar.gz |
updated for version 7.2-175v7.2.175
Diffstat (limited to 'src')
-rw-r--r-- | src/if_cscope.c | 2 | ||||
-rw-r--r-- | src/version.c | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/src/if_cscope.c b/src/if_cscope.c index 1b0a8cdad..b0c474ed5 100644 --- a/src/if_cscope.c +++ b/src/if_cscope.c @@ -994,7 +994,7 @@ err_closing: vim_free(ppath); #if defined(UNIX) - if (execl("/bin/sh", "sh", "-c", cmd, NULL) == -1) + if (execl("/bin/sh", "sh", "-c", cmd, (char *)NULL) == -1) PERROR(_("cs_create_connection exec failed")); exit(127); diff --git a/src/version.c b/src/version.c index 5e4ec7986..ed64ecec1 100644 --- a/src/version.c +++ b/src/version.c @@ -677,6 +677,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 175, +/**/ 174, /**/ 173, |