Unverified Commit 0cd262d1 by Donghwa Jeong Committed by Christian Brauner

conf: remove unused argument

parent 29babe5e
...@@ -947,7 +947,7 @@ static int lxc_setup_ttys(struct lxc_conf *conf) ...@@ -947,7 +947,7 @@ static int lxc_setup_ttys(struct lxc_conf *conf)
return 0; return 0;
} }
int lxc_allocate_ttys(const char *name, struct lxc_conf *conf) int lxc_allocate_ttys(struct lxc_conf *conf)
{ {
int i, ret; int i, ret;
struct lxc_tty_info *ttys = &conf->ttys; struct lxc_tty_info *ttys = &conf->ttys;
...@@ -1062,7 +1062,7 @@ static int lxc_create_ttys(struct lxc_handler *handler) ...@@ -1062,7 +1062,7 @@ static int lxc_create_ttys(struct lxc_handler *handler)
int ret = -1; int ret = -1;
struct lxc_conf *conf = handler->conf; struct lxc_conf *conf = handler->conf;
ret = lxc_allocate_ttys(handler->name, conf); ret = lxc_allocate_ttys(conf);
if (ret < 0) { if (ret < 0) {
ERROR("Failed to allocate ttys"); ERROR("Failed to allocate ttys");
goto on_error; goto on_error;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment