wineconsole: Remove duplicate line feeds.
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
9032849d06
commit
03e438dbf5
|
@ -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);
|
||||
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->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->fnComputePositions(data);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue