mshtml: Formatting change to get rid of warning on GCC 6.
Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com> Signed-off-by: Jacek Caban <jacek@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
390c273061
commit
8fbaeb3058
|
@ -989,10 +989,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…
Reference in New Issue