From 76be268ffae3fab048f263c19d8781357f3e2a67 Mon Sep 17 00:00:00 2001 From: Mike Nolan Date: Fri, 30 May 2025 22:53:21 -0500 Subject: [PATCH] Make rpath relative --- src/vm/vm.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vm/vm.cpp b/src/vm/vm.cpp index 2d71bd1..1cf0acb 100644 --- a/src/vm/vm.cpp +++ b/src/vm/vm.cpp @@ -3960,7 +3960,7 @@ namespace Tesses::CrossLang { { if(key == "GetPort") { - cse.back()->Push(gc, netStrm->GetPort()); + cse.back()->Push(gc, (int64_t)netStrm->GetPort()); return false; } if(key == "Bind")