mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-29 02:19:18 -05:00
fix incorrect signature for findfirst
This commit is contained in:
@@ -96,7 +96,7 @@ bool Directory::Load(const char* name)
|
||||
struct _finddata_t data; // data of current file
|
||||
|
||||
// Now put them into the file array
|
||||
size_t srchHandle = _findfirst(buf, &data);
|
||||
intptr_t srchHandle = _findfirst(buf, &data);
|
||||
delete [] buf;
|
||||
|
||||
if ( srchHandle == -1 )
|
||||
|
||||
Reference in New Issue
Block a user