1
0
Fork 0
mirror of https://git.freebsd.org/ports.git synced 2025-06-17 18:50:33 -04:00
ports/devel/ice/files/patch-cpp_src_FreezeScript_Util.cpp
Yasuhiro Kimura f646a017a4 devel/ice: Fix build with Berkeley DB 18.x
PR:		262930
Tested by:	grembo
Approved by:	grembo (maintainer)
2022-04-01 14:32:59 +09:00

11 lines
289 B
C++

--- cpp/src/FreezeScript/Util.cpp.orig 2019-08-12 19:54:18 UTC
+++ cpp/src/FreezeScript/Util.cpp
@@ -209,7 +209,7 @@ FreezeScript::readCatalog(const Ice::CommunicatorPtr&
{
CatalogDataMap result;
- DbEnv dbEnv(0);
+ DbEnv dbEnv((u_int32_t)0);
try
{
#ifdef _WIN32