Skip to content

Commit

Permalink
fix: use intptr_t for file handle on win32
Browse files Browse the repository at this point in the history
fixes #18
  • Loading branch information
lionello committed Oct 9, 2023
1 parent 757b17a commit 7484568
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fart_shared.c
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ char* strdup3( const char* s1, const char* s2, const char* s3 )
char** find_files( const char* dir, const char *wc, int dirs_or_files )
{
char *_path;
long fh;
intptr_t fh;
struct _finddata_t fd;
char **spul;
int numitems;
Expand Down

0 comments on commit 7484568

Please sign in to comment.