commit | 5f4c8406a2c58320a94de77f49b35eda7058f328 | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Mon Jan 06 06:19:11 2014 +0100 |
committer | Bram Moolenaar <Bram@vim.org> | Mon Jan 06 06:19:11 2014 +0100 |
tree | c2cd71fa39c02d25b35d2ffbcb26e0902ed7dd6e | |
parent | 3f1138e8aefc91768cd3d94b4d15671204c117c3 [diff] [blame] |
updated for version 7.4.133 Problem: Clang warns for using NUL. Solution: Change NUL to NULL. (Dominique Pelle)
diff --git a/src/misc2.c b/src/misc2.c index 6506203..a9d7a82 100644 --- a/src/misc2.c +++ b/src/misc2.c
@@ -4695,8 +4695,8 @@ 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)