Skip to content

Commit

Permalink
eliminate compiler error
Browse files Browse the repository at this point in the history
  • Loading branch information
Cristy committed May 13, 2024
1 parent 7a6485b commit d04f037
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion magick/utility-private.h
Expand Up @@ -279,7 +279,7 @@ static inline int stat_utf8(const char *path,struct stat *attributes)
path_wide=create_wchar_path(path);
if (path_wide == (WCHAR *) NULL)
return(-1);
status=wstat(path_wide,attributes);
status=_wstati64(path_wide,attributes);
path_wide=(WCHAR *) RelinquishMagickMemory(path_wide);
return(status);
#endif
Expand Down

0 comments on commit d04f037

Please sign in to comment.