mirror of
https://github.com/vim/vim.git
synced 2025-09-23 03:43:49 -04:00
updated for version 7.4.133
Problem: Clang warns for using NUL. Solution: Change NUL to NULL. (Dominique Pelle)
This commit is contained in:
@@ -4695,8 +4695,8 @@ vim_findfile_init(path, filename, stopdirs, level, free_visited, find_what,
|
||||
else
|
||||
{
|
||||
char_u *p = gettail(search_ctx->ffsc_fix_path);
|
||||
char_u *wc_path = NUL;
|
||||
char_u *temp = NUL;
|
||||
char_u *wc_path = NULL;
|
||||
char_u *temp = NULL;
|
||||
int len = 0;
|
||||
|
||||
if (p > search_ctx->ffsc_fix_path)
|
||||
|
Reference in New Issue
Block a user