fix incorrect signature for findfirst

This commit is contained in:
Ken Martin 2004-02-12 11:23:41 -05:00
parent 6223d60085
commit 012a14de69
1 changed files with 1 additions and 1 deletions

View File

@ -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 )