mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-01-09 09:39:16 +08:00
fix for ps3.2 compilation
This commit is contained in:
parent
f7510dc6aa
commit
862bf1b793
1 changed files with 1 additions and 1 deletions
|
@ -78,7 +78,7 @@ int is_regular_file(const char *filename) {
|
|||
#ifdef _WIN32
|
||||
struct _stat st;
|
||||
_stat(filename, &st);
|
||||
return S_ISREG(_st.st_mode);
|
||||
return S_ISREG(st.st_mode);
|
||||
#else
|
||||
struct stat st;
|
||||
stat(filename, &st);
|
||||
|
|
Loading…
Reference in a new issue