diff options
| author | Brian Anderson <[email protected]> | 2011-01-07 23:05:09 -0500 |
|---|---|---|
| committer | Graydon Hoare <[email protected]> | 2011-01-10 11:31:33 -0800 |
| commit | ebf8638d3115b9da676e5f737c545ace503be868 (patch) | |
| tree | bf2f0746b6cc83c865a56f11031eb53f22665793 /src/rt/circular_buffer.cpp | |
| parent | Don't allow circular_buffer to shrink below its original size when unit_sz is... (diff) | |
| download | rust-ebf8638d3115b9da676e5f737c545ace503be868.tar.xz rust-ebf8638d3115b9da676e5f737c545ace503be868.zip | |
Remove tabs
Diffstat (limited to 'src/rt/circular_buffer.cpp')
| -rw-r--r-- | src/rt/circular_buffer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rt/circular_buffer.cpp b/src/rt/circular_buffer.cpp index b458dedd..c3b068ac 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; |