From c54c2258374fc9fd9c3317374a6eecdaf56ff80a Mon Sep 17 00:00:00 2001 From: Kris <1611248+Rinzwind@users.noreply.github.com> Date: Sun, 24 Mar 2024 00:43:30 +0100 Subject: [PATCH] =?UTF-8?q?Changed=20#getTempPath:buffer:=20on=20WinPlatfo?= =?UTF-8?q?rm=20to=20use=20=E2=80=98GetTempPathW=E2=80=99=20instead=20of?= =?UTF-8?q?=20=E2=80=98GetTempPath2W=E2=80=99.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/System-Platforms/WinPlatform.class.st | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/System-Platforms/WinPlatform.class.st b/src/System-Platforms/WinPlatform.class.st index f0d77c0286d..924c267a6cf 100644 --- a/src/System-Platforms/WinPlatform.class.st +++ b/src/System-Platforms/WinPlatform.class.st @@ -86,7 +86,7 @@ WinPlatform >> getTempPath [ { #category : 'file paths' } WinPlatform >> getTempPath: bufferLength buffer: buffer [ - self ffiCall: #(long GetTempPath2W(long bufferLength, + self ffiCall: #(long GetTempPathW(long bufferLength, void* buffer)) ]