Commit 8f0bdb05 by 2xsec

tools: lxc-destroy: remove the trailing .

Signed-off-by: 's avatar2xsec <dh48.jeong@samsung.com>
parent 77e5da8e
......@@ -158,7 +158,7 @@ static bool do_destroy(struct lxc_container *c)
return false;
if (file_exists(path)) {
ERROR("Destroying %s failed: %s has clones.", c->name, c->name);
ERROR("Destroying %s failed: %s has clones", c->name, c->name);
return false;
}
......@@ -167,7 +167,7 @@ static bool do_destroy(struct lxc_container *c)
return false;
if (rmdir(path) < 0 && errno != ENOENT) {
ERROR("Destroying %s failed: %s has snapshots.", c->name, c->name);
ERROR("Destroying %s failed: %s has snapshots", c->name, c->name);
return false;
}
......
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