comparison src/ex_cmds.c @ 3978:26c8b3b49f74 v7.3.744

updated for version 7.3.744 Problem: 64 bit compiler warning. Solution: Add type cast. (Mike Williams)
author Bram Moolenaar <bram@vim.org>
date Thu, 29 Nov 2012 20:10:00 +0100
parents fc8b4a06af9d
children b5103b7d9e12
comparison
equal deleted inserted replaced
3977:20abc3eed24b 3978:26c8b3b49f74
6458 # endif 6458 # endif
6459 6459
6460 /* 6460 /*
6461 * Find all *.txt files. 6461 * Find all *.txt files.
6462 */ 6462 */
6463 dirlen = STRLEN(dir); 6463 dirlen = (int)STRLEN(dir);
6464 STRCPY(NameBuff, dir); 6464 STRCPY(NameBuff, dir);
6465 STRCAT(NameBuff, "/**/*"); 6465 STRCAT(NameBuff, "/**/*");
6466 STRCAT(NameBuff, ext); 6466 STRCAT(NameBuff, ext);
6467 if (gen_expand_wildcards(1, &NameBuff, &filecount, &files, 6467 if (gen_expand_wildcards(1, &NameBuff, &filecount, &files,
6468 EW_FILE|EW_SILENT) == FAIL 6468 EW_FILE|EW_SILENT) == FAIL