mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-01-30 12:32:43 +00:00
Merge pull request #990 from Bigpet/minifixes
fix #elif with no condition
This commit is contained in:
commit
32fd9223ff
@ -239,7 +239,7 @@ s32 cellFsStat(vm::ptr<const char> path, vm::ptr<CellFsStat> sb)
|
||||
#ifdef _WIN32
|
||||
struct _stat64 buf;
|
||||
stat_result = _stat64(real_path.c_str(), &buf);
|
||||
#elif
|
||||
#else
|
||||
struct stat buf;
|
||||
stat_result = stat(real_path.c_str(), &buf);
|
||||
#endif
|
||||
|
Loading…
x
Reference in New Issue
Block a user