1
0
mirror of https://github.com/RPCS3/rpcs3.git synced 2024-11-26 12:42:41 +01:00

fix #elif with no condition

This commit is contained in:
Peter Tissen 2015-02-02 22:38:05 +01:00
parent c267ca2584
commit 8ce1de036a

View File

@ -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