mirror of
https://github.com/FWGS/xash3d-fwgs
synced 2024-11-25 11:19:59 +01:00
engine: common: comply with C89 in OpenBSD wai_getExecutablePath
This commit is contained in:
parent
f330aac113
commit
e7e1677786
@ -632,12 +632,14 @@ int WAI_PREFIX(getExecutablePath)(char* out, int capacity, int* dirname_length)
|
||||
else
|
||||
{
|
||||
const char* PATH = getenv("PATH");
|
||||
const char* begin;
|
||||
size_t argv0_length;
|
||||
if (!PATH)
|
||||
break;
|
||||
|
||||
size_t argv0_length = strlen(argv[0]);
|
||||
argv0_length = strlen(argv[0]);
|
||||
|
||||
const char* begin = PATH;
|
||||
begin = PATH;
|
||||
while (1)
|
||||
{
|
||||
const char* separator = strchr(begin, ':');
|
||||
|
Loading…
Reference in New Issue
Block a user