about summary refs log tree commit diff
path: root/src/libcore/flate.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/libcore/flate.rs')
-rw-r--r--src/libcore/flate.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/libcore/flate.rs b/src/libcore/flate.rs
index c830648e9df..d9dc89097d0 100644
--- a/src/libcore/flate.rs
+++ b/src/libcore/flate.rs
@@ -41,10 +41,10 @@ pub mod rustrt {
     }
 }
 
-const lz_none : c_int = 0x0;   // Huffman-coding only.
-const lz_fast : c_int = 0x1;   // LZ with only one probe
-const lz_norm : c_int = 0x80;  // LZ with 128 probes, "normal"
-const lz_best : c_int = 0xfff; // LZ with 4095 probes, "best"
+static lz_none : c_int = 0x0;   // Huffman-coding only.
+static lz_fast : c_int = 0x1;   // LZ with only one probe
+static lz_norm : c_int = 0x80;  // LZ with 128 probes, "normal"
+static lz_best : c_int = 0xfff; // LZ with 4095 probes, "best"
 
 pub fn deflate_bytes(bytes: &[const u8]) -> ~[u8] {
     do vec::as_const_buf(bytes) |b, len| {