about summary refs log tree commit diff
path: root/src/libcore/unstable/lang.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/libcore/unstable/lang.rs')
-rw-r--r--src/libcore/unstable/lang.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libcore/unstable/lang.rs b/src/libcore/unstable/lang.rs
index db0b1cc33cd..ea5dfa0a530 100644
--- a/src/libcore/unstable/lang.rs
+++ b/src/libcore/unstable/lang.rs
@@ -22,9 +22,9 @@ use cast::transmute;
 pub type rust_task = c_void;
 
 #[cfg(target_word_size = "32")]
-pub const FROZEN_BIT: uint = 0x80000000;
+pub static FROZEN_BIT: uint = 0x80000000;
 #[cfg(target_word_size = "64")]
-pub const FROZEN_BIT: uint = 0x8000000000000000;
+pub static FROZEN_BIT: uint = 0x8000000000000000;
 
 pub mod rustrt {
     use libc::{c_char, uintptr_t};