From 7f11fcf7a6fb3704cadf9309fffd7c22ca4822f4 Mon Sep 17 00:00:00 2001 From: Benjamin Schaaf Date: Sun, 5 May 2019 15:37:35 +1000 Subject: [PATCH] Candidate windows compilation fix --- source/vibe/core/process.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/vibe/core/process.d b/source/vibe/core/process.d index 0fb76e2..c3788b6 100644 --- a/source/vibe/core/process.d +++ b/source/vibe/core/process.d @@ -34,7 +34,7 @@ import vibe.core.internal.release; */ Process registerProcess(Pid pid) @trusted { - return registerProcess(pid.osHandle); + return registerProcess(pid.processID); } /// ditto