Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change #getTempPath:buffer: on WinPlatform to use ‘GetTempPathW’ instead of ‘GetTempPath2W’ #16342

Merged
merged 5 commits into from
Apr 2, 2024
Prev Previous commit
Next Next commit
Adapted #removeEnvironmentVariable: on Win32Environment to changes do…
…ne in commit 15c6cf4 (“[…]Activate strict FFI[…]”).
Rinzwind committed Mar 26, 2024
commit 3b34f898daa99c85928f82d81bec0a9db90632e4
2 changes: 1 addition & 1 deletion src/System-OSEnvironments/Win32Environment.class.st
Original file line number Diff line number Diff line change
@@ -121,7 +121,7 @@ Win32Environment >> keysAndValuesDo: aBlock [
{ #category : 'private' }
Win32Environment >> removeEnvironmentVariable: nameString [

^ self ffiCall: #( int SetEnvironmentVariableW ( Win32WideString nameString, 0 ) )
^ self ffiCall: #( int SetEnvironmentVariableW ( Win32WideString nameString, Win32WideString 0 ) )
]

{ #category : 'accessing' }