From 0618278b36f3bc00793ef1e273e24e4e4436462f Mon Sep 17 00:00:00 2001 From: Hunter Bridges <775593+hunterbridges@users.noreply.github.com> Date: Fri, 15 Apr 2022 19:46:59 -0700 Subject: [PATCH] Fix ToVAListPtr return type --- BeefLibs/corlib/src/Internal.bf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BeefLibs/corlib/src/Internal.bf b/BeefLibs/corlib/src/Internal.bf index 077a3547..3bfe37cb 100644 --- a/BeefLibs/corlib/src/Internal.bf +++ b/BeefLibs/corlib/src/Internal.bf @@ -66,7 +66,7 @@ namespace System #endif } - public void** ToVAListPtr() mut + public void* ToVAListPtr() mut { return &mVAList; }