Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
L
lxc
Project
Overview
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
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Chen Yisong
lxc
Commits
0cd262d1
Unverified
Commit
0cd262d1
authored
Jun 18, 2018
by
Donghwa Jeong
Committed by
Christian Brauner
Jun 22, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
conf: remove unused argument
Signed-off-by:
Donghwa Jeong
<
dh48.jeong@samsung.com
>
parent
29babe5e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
conf.c
src/lxc/conf.c
+2
-2
No files found.
src/lxc/conf.c
View file @
0cd262d1
...
...
@@ -947,7 +947,7 @@ static int lxc_setup_ttys(struct lxc_conf *conf)
return
0
;
}
int
lxc_allocate_ttys
(
const
char
*
name
,
struct
lxc_conf
*
conf
)
int
lxc_allocate_ttys
(
struct
lxc_conf
*
conf
)
{
int
i
,
ret
;
struct
lxc_tty_info
*
ttys
=
&
conf
->
ttys
;
...
...
@@ -1062,7 +1062,7 @@ static int lxc_create_ttys(struct lxc_handler *handler)
int
ret
=
-
1
;
struct
lxc_conf
*
conf
=
handler
->
conf
;
ret
=
lxc_allocate_ttys
(
handler
->
name
,
conf
);
ret
=
lxc_allocate_ttys
(
conf
);
if
(
ret
<
0
)
{
ERROR
(
"Failed to allocate ttys"
);
goto
on_error
;
...
...
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