Fixed invalid preprocessor directive

This commit is contained in:
thesource 2017-08-18 11:53:47 +03:00
parent e8a81df8d8
commit 76dd5d380e

View File

@ -156,7 +156,7 @@ bool getFileInfo(const char *path, FileInfo *fileInfo) {
std::string copy(path);
#ifdef __ANDROID__ && __ANDROID_API__ < 21
#if (defined __ANDROID__) && (__ANDROID_API__ < 21)
struct stat file_info;
int result = stat(copy.c_str(), &file_info);
#else