Suggested change to prevent ABC from crashing when compiled on Windows.

This commit is contained in:
Alan Mishchenko 2022-02-18 10:51:49 -08:00
parent 33fb7a809d
commit b442c749e3
1 changed files with 2 additions and 1 deletions

View File

@ -114,7 +114,8 @@ Vec_Ptr_t * CmdCollectFileNames()
{
Vec_Ptr_t * vFileNames;
struct _finddata_t c_file;
long hFile;
//long hFile;
ABC_PTRINT_T hFile;
if( (hFile = _findfirst( "*.exe", &c_file )) == -1L )
{
// Abc_Print( 0, "No files with extention \"%s\" in the current directory.\n", "exe" );