blob: 0af7a6ed208b503f6fc7bc6dc46201a5f86c679d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
--- src/base/platform/platform-freebsd.cc.orig 2021-04-22 15:00:28 UTC
+++ 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;
|