Merge pull request #27 from moteus/patch-1

Fix. Use intptr_t to file handle on Windows (#26)
This commit is contained in:
Hisham Muhammad
2014-01-04 12:13:23 -08:00

View File

@@ -94,7 +94,7 @@
typedef struct dir_data {
int closed;
#ifdef _WIN32
long hFile;
intptr_t hFile;
char pattern[MAX_PATH+1];
#else
DIR *dir;