mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 08:49:15 +00:00
wineconsole: Remove duplicate line feeds.
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
9032849d06
commit
03e438dbf5
2 changed files with 2 additions and 2 deletions
|
@ -559,7 +559,7 @@ static void WCUSER_SetFontPmt(struct inner_data* data, const WCHAR* font,
|
||||||
EnumFontFamiliesW(PRIVATE(data)->hMemDC, NULL, get_first_font_enum, (LPARAM)&fc);
|
EnumFontFamiliesW(PRIVATE(data)->hMemDC, NULL, get_first_font_enum, (LPARAM)&fc);
|
||||||
if (fc.done) return;
|
if (fc.done) return;
|
||||||
}
|
}
|
||||||
WINECON_Fatal("Couldn't find a decent font, aborting\n");
|
WINECON_Fatal("Couldn't find a decent font, aborting");
|
||||||
}
|
}
|
||||||
|
|
||||||
/******************************************************************
|
/******************************************************************
|
||||||
|
|
|
@ -340,7 +340,7 @@ void WINECON_GrabChanges(struct inner_data* data)
|
||||||
data->cells = HeapReAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, data->cells,
|
data->cells = HeapReAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, data->cells,
|
||||||
data->curcfg.sb_width * data->curcfg.sb_height * sizeof(CHAR_INFO));
|
data->curcfg.sb_width * data->curcfg.sb_height * sizeof(CHAR_INFO));
|
||||||
|
|
||||||
if (!data->cells) WINECON_Fatal("OOM\n");
|
if (!data->cells) WINECON_Fatal("OOM");
|
||||||
data->fnResizeScreenBuffer(data);
|
data->fnResizeScreenBuffer(data);
|
||||||
data->fnComputePositions(data);
|
data->fnComputePositions(data);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue