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
c8af1718
Commit
c8af1718
authored
Oct 18, 2020
by
Roman Pišl
Committed by
Alexandre Julliard
Oct 19, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernelbase: Fix comment and trace message in console.
Signed-off-by:
Roman Pišl
<
rpisl@seznam.cz
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
cb8d5859
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
console.c
dlls/kernelbase/console.c
+2
-2
No files found.
dlls/kernelbase/console.c
View file @
c8af1718
...
...
@@ -351,7 +351,7 @@ BOOL WINAPI AllocConsole(void)
memset
(
&
console_si
,
0
,
sizeof
(
console_si
));
console_si
.
cb
=
sizeof
(
console_si
);
/* setup a view arguments for
wineconsole
(it'll use them as default values) */
/* setup a view arguments for
conhost
(it'll use them as default values) */
if
(
app_si
.
dwFlags
&
STARTF_USECOUNTCHARS
)
{
console_si
.
dwFlags
|=
STARTF_USECOUNTCHARS
;
...
...
@@ -386,7 +386,7 @@ BOOL WINAPI AllocConsole(void)
if
(
!
init_console_std_handles
(
!
(
app_si
.
dwFlags
&
STARTF_USESTDHANDLES
)
))
goto
error
;
RtlGetCurrentPeb
()
->
ProcessParameters
->
ConsoleHandle
=
console
;
TRACE
(
"Started
wineconsole
pid=%08x tid=%08x
\n
"
,
pi
.
dwProcessId
,
pi
.
dwThreadId
);
TRACE
(
"Started
conhost
pid=%08x tid=%08x
\n
"
,
pi
.
dwProcessId
,
pi
.
dwThreadId
);
CloseHandle
(
server
);
RtlLeaveCriticalSection
(
&
console_section
);
...
...
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