From 8ce1de036adeefe5874731be57b2a7ce48e74179 Mon Sep 17 00:00:00 2001 From: Peter Tissen Date: Mon, 2 Feb 2015 22:38:05 +0100 Subject: [PATCH] fix #elif with no condition --- rpcs3/Emu/SysCalls/lv2/cellFs.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpcs3/Emu/SysCalls/lv2/cellFs.cpp b/rpcs3/Emu/SysCalls/lv2/cellFs.cpp index f140555ddc..38ea4fc729 100644 --- a/rpcs3/Emu/SysCalls/lv2/cellFs.cpp +++ b/rpcs3/Emu/SysCalls/lv2/cellFs.cpp @@ -239,7 +239,7 @@ s32 cellFsStat(vm::ptr path, vm::ptr 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