mirror of
https://github.com/reactos/reactos.git
synced 2025-08-07 14:23:06 +00:00
[MSHTML] Convert tabs to spaces
Fixes GCC 8 warning: dll/win32/mshtml/script.c:844:4: error: this 'if' clause does not guard... [-Werror=misleading-indentation] if(!new_buf) ^~ dll/win32/mshtml/script.c:846:13: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'if' This->size <<= 1; ^~~~
This commit is contained in:
parent
2944d29969
commit
207a0f520e
1 changed files with 4 additions and 4 deletions
|
@ -839,10 +839,10 @@ static HRESULT ScriptBSC_read_data(BSCallback *bsc, IStream *stream)
|
||||||
|
|
||||||
do {
|
do {
|
||||||
if(This->bsc.readed >= This->size) {
|
if(This->bsc.readed >= This->size) {
|
||||||
void *new_buf;
|
void *new_buf;
|
||||||
new_buf = heap_realloc(This->buf, This->size << 1);
|
new_buf = heap_realloc(This->buf, This->size << 1);
|
||||||
if(!new_buf)
|
if(!new_buf)
|
||||||
return E_OUTOFMEMORY;
|
return E_OUTOFMEMORY;
|
||||||
This->size <<= 1;
|
This->size <<= 1;
|
||||||
This->buf = new_buf;
|
This->buf = new_buf;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue