mirror of
https://github.com/cc65/cc65.git
synced 2024-11-18 00:07:21 +00:00
Update windows build FindAbsolutePath bug
This commit is contained in:
parent
c0285cadc8
commit
9d50090769
@ -2978,7 +2978,7 @@ char *FindAbsolutePath (const char *path);
|
|||||||
#if defined(_WIN32)
|
#if defined(_WIN32)
|
||||||
|
|
||||||
char *FindAbsolutePath (const char *path) {
|
char *FindAbsolutePath (const char *path) {
|
||||||
return _fullpath (NULL, path, PATH_MAX);
|
return _fullpath (NULL, path, MAX_PATH);
|
||||||
}
|
}
|
||||||
|
|
||||||
#else
|
#else
|
||||||
|
Loading…
Reference in New Issue
Block a user