about summary refs log tree commit diff
path: root/src/lib
diff options
context:
space:
mode:
authorBrian Anderson <banderson@mozilla.com>2011-11-09 15:49:23 -0800
committerBrian Anderson <banderson@mozilla.com>2011-11-09 16:47:43 -0800
commitdec6b53761f8157ea553db09b6d5ba40a433c9c4 (patch)
treedf93603ad259a9aecef6680b77d0e667dd64d2b2 /src/lib
parent3204f7e4c37ecaf7afead1bac28f3b3a20b6794b (diff)
downloadrust-dec6b53761f8157ea553db09b6d5ba40a433c9c4.tar.gz
rust-dec6b53761f8157ea553db09b6d5ba40a433c9c4.zip
Convert last use of "x86stdcall" ABI to "c-stack-stdcall"
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/win32_os.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/win32_os.rs b/src/lib/win32_os.rs
index ccf4dbceefa..2ca6eae3f1b 100644
--- a/src/lib/win32_os.rs
+++ b/src/lib/win32_os.rs
@@ -43,7 +43,7 @@ type DWORD = u32;
 type HMODULE = uint;
 type LPTSTR = str::sbuf;
 
-native "x86stdcall" mod kernel32 {
+native "c-stack-stdcall" mod kernel32 {
     fn GetEnvironmentVariableA(n: str::sbuf, v: str::sbuf, nsize: uint) ->
        uint;
     fn SetEnvironmentVariableA(n: str::sbuf, v: str::sbuf) -> int;