Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
03e438db
Commit
03e438db
authored
May 17, 2017
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wineconsole: Remove duplicate line feeds.
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
9032849d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
user.c
programs/wineconsole/user.c
+1
-1
wineconsole.c
programs/wineconsole/wineconsole.c
+1
-1
No files found.
programs/wineconsole/user.c
View file @
03e438db
...
...
@@ -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"
);
}
/******************************************************************
...
...
programs/wineconsole/wineconsole.c
View file @
03e438db
...
...
@@ -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
);
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment