1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-26 05:29:30 +00:00

Update windows build FindAbsolutePath bug

This commit is contained in:
cosineblast 2024-01-12 18:29:54 -03:00
parent c0285cadc8
commit 9d50090769

View File

@ -2978,7 +2978,7 @@ char *FindAbsolutePath (const char *path);
#if defined(_WIN32)
char *FindAbsolutePath (const char *path) {
return _fullpath (NULL, path, PATH_MAX);
return _fullpath (NULL, path, MAX_PATH);
}
#else