Fixed unused variable on Linux

This commit is contained in:
Lior Halphon 2020-04-25 17:06:24 +03:00
parent e819b91a97
commit a35164dc0a
1 changed files with 1 additions and 2 deletions

View File

@ -178,8 +178,7 @@ static const char *executable_folder(void)
_NSGetExecutablePath(&path[0], &length);
#else
#ifdef __linux__
ssize_t length = readlink("/proc/self/exe", &path[0], sizeof(path) - 1);
assert (length != -1);
assert (readlink("/proc/self/exe", &path[0], sizeof(path) - 1) != -1);
#else
#ifdef _WIN32
HMODULE hModule = GetModuleHandle(NULL);