Skip to content

Commit ebf8638

Browse files
brsongraydon
authored andcommitted
Remove tabs
1 parent f1df1d1 commit ebf8638

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/rt/circular_buffer.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ circular_buffer::dequeue(void *dst) {
128128
void *tmp = dom->malloc(_buffer_sz / 2);
129129
transfer(tmp);
130130
_buffer_sz >>= 1;
131-
I(dom, _initial_sz <= _buffer_sz);
131+
I(dom, _initial_sz <= _buffer_sz);
132132
dom->free(_buffer);
133133
_buffer = (uint8_t *)tmp;
134134
_next = 0;

0 commit comments

Comments
 (0)