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
b2e1c373
Commit
b2e1c373
authored
Nov 27, 2020
by
Jacek Caban
Committed by
Alexandre Julliard
Nov 27, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
server: Rename create_console_output to create_screen_buffer.
Signed-off-by:
Jacek Caban
<
jacek@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
6f3cf86a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
console.c
server/console.c
+3
-3
No files found.
server/console.c
View file @
b2e1c373
...
...
@@ -551,7 +551,7 @@ static void set_active_screen_buffer( struct console *console, struct screen_buf
screen_buffer
->
id
,
NULL
,
NULL
);
}
static
struct
object
*
create_
console_output
(
struct
console
*
console
)
static
struct
object
*
create_
screen_buffer
(
struct
console
*
console
)
{
struct
screen_buffer
*
screen_buffer
;
...
...
@@ -814,7 +814,7 @@ static struct object *console_server_lookup_name( struct object *obj, struct uni
return
0
;
}
if
(
!
(
server
->
console
=
(
struct
console
*
)
create_console
()))
return
NULL
;
if
(
!
(
screen_buffer
=
(
struct
screen_buffer
*
)
create_
console_output
(
server
->
console
)))
if
(
!
(
screen_buffer
=
(
struct
screen_buffer
*
)
create_
screen_buffer
(
server
->
console
)))
{
release_object
(
server
->
console
);
server
->
console
=
NULL
;
...
...
@@ -1231,7 +1231,7 @@ static struct object *console_device_lookup_name( struct object *obj, struct uni
return
NULL
;
}
name
->
len
=
0
;
return
create_
console_output
(
current
->
process
->
console
);
return
create_
screen_buffer
(
current
->
process
->
console
);
}
if
(
name
->
len
==
sizeof
(
serverW
)
&&
!
memcmp
(
name
->
str
,
serverW
,
name
->
len
))
...
...
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