mirror of
https://git.freebsd.org/ports.git
synced 2025-04-29 18:16:48 -04:00
Node.js is a free, open-source, cross-platform JavaScript runtime environment that lets developers create servers, web apps, command line tools and scripts.
13 lines
596 B
C++
13 lines
596 B
C++
--- deps/v8/src/base/platform/platform-freebsd.cc.orig 2023-05-16 06:58:20 UTC
|
|
+++ deps/v8/src/base/platform/platform-freebsd.cc
|
|
@@ -82,8 +82,8 @@ std::vector<OS::SharedLibraryAddress> OS::GetSharedLib
|
|
lib_name = std::string(path);
|
|
}
|
|
result.push_back(SharedLibraryAddress(
|
|
- lib_name, reinterpret_cast<uintptr_t>(map->kve_start),
|
|
- reinterpret_cast<uintptr_t>(map->kve_end)));
|
|
+ lib_name, static_cast<uintptr_t>(map->kve_start),
|
|
+ static_cast<uintptr_t>(map->kve_end)));
|
|
}
|
|
|
|
start += ssize;
|