about summary refs log tree commit diff
path: root/src/rt/circular_buffer.cpp
diff options
context:
space:
mode:
authorBrian Anderson <andersrb@gmail.com>2011-01-07 23:05:09 -0500
committerGraydon Hoare <graydon@mozilla.com>2011-01-10 11:31:33 -0800
commitebf8638d3115b9da676e5f737c545ace503be868 (patch)
treebf2f0746b6cc83c865a56f11031eb53f22665793 /src/rt/circular_buffer.cpp
parentf1df1d1a51f310553fd8bcb831215307ec2609ae (diff)
downloadrust-ebf8638d3115b9da676e5f737c545ace503be868.tar.gz
rust-ebf8638d3115b9da676e5f737c545ace503be868.zip
Remove tabs
Diffstat (limited to 'src/rt/circular_buffer.cpp')
-rw-r--r--src/rt/circular_buffer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rt/circular_buffer.cpp b/src/rt/circular_buffer.cpp
index b458deddd90..c3b068ac3a0 100644
--- a/src/rt/circular_buffer.cpp
+++ b/src/rt/circular_buffer.cpp
@@ -128,7 +128,7 @@ circular_buffer::dequeue(void *dst) {
         void *tmp = dom->malloc(_buffer_sz / 2);
         transfer(tmp);
         _buffer_sz >>= 1;
-	I(dom, _initial_sz <= _buffer_sz);
+        I(dom, _initial_sz <= _buffer_sz);
         dom->free(_buffer);
         _buffer = (uint8_t *)tmp;
         _next = 0;