aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorHisham Muhammad <hisham@gobolinux.org>2014-01-04 12:13:23 -0800
committerHisham Muhammad <hisham@gobolinux.org>2014-01-04 12:13:23 -0800
commit2b80db36f00dc3ac46724b1c128f734eecac181d (patch)
treeee534a9139513a6a56f83888a93dd2528bf8c212 /src
parent2fd989cd6c777583be1c93616018c55b2cbb1bcf (diff)
parentab8348e9bc404705a88bd1a9736dc9d947882fec (diff)
downloadluafilesystem-2b80db36f00dc3ac46724b1c128f734eecac181d.tar.gz
luafilesystem-2b80db36f00dc3ac46724b1c128f734eecac181d.tar.bz2
luafilesystem-2b80db36f00dc3ac46724b1c128f734eecac181d.zip
Merge pull request #27 from moteus/patch-1
Fix. Use intptr_t to file handle on Windows (#26)
Diffstat (limited to 'src')
-rw-r--r--src/lfs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lfs.c b/src/lfs.c
index cfed850..b7c4fcd 100644
--- a/src/lfs.c
+++ b/src/lfs.c
@@ -94,7 +94,7 @@
94typedef struct dir_data { 94typedef struct dir_data {
95 int closed; 95 int closed;
96#ifdef _WIN32 96#ifdef _WIN32
97 long hFile; 97 intptr_t hFile;
98 char pattern[MAX_PATH+1]; 98 char pattern[MAX_PATH+1];
99#else 99#else
100 DIR *dir; 100 DIR *dir;