summary refs log tree commit diff
path: root/src/rt/circular_buffer.h
diff options
context:
space:
mode:
authorBrian Anderson <banderson@mozilla.com>2011-12-17 16:45:13 -0800
committerBrian Anderson <banderson@mozilla.com>2011-12-20 20:15:09 -0800
commitaeadc6269ef76f4425a49d892ceac7ea311ef5c1 (patch)
treee62356f817552b6430f43b6c72964325791418d1 /src/rt/circular_buffer.h
parent128621be97d425a1d19e6640c8aee4fb6fca430b (diff)
downloadrust-aeadc6269ef76f4425a49d892ceac7ea311ef5c1.tar.gz
rust-aeadc6269ef76f4425a49d892ceac7ea311ef5c1.zip
wip
Diffstat (limited to 'src/rt/circular_buffer.h')
-rw-r--r--src/rt/circular_buffer.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rt/circular_buffer.h b/src/rt/circular_buffer.h
index f06e700b2f8..ae08c0c6074 100644
--- a/src/rt/circular_buffer.h
+++ b/src/rt/circular_buffer.h
@@ -7,7 +7,7 @@
 
 class
 circular_buffer : public kernel_owned<circular_buffer> {
-    static const size_t INITIAL_CIRCULAR_BUFFER_SIZE_IN_UNITS = 8;
+    static const size_t INITIAL_CIRCULAR_BUFFER_SIZE_IN_UNITS = 1;
     static const size_t MAX_CIRCULAR_BUFFER_SIZE = 1 << 24;
 
 public: