Commit 5e30dbea by dlezcano

Fixed typos

parent 681799f9
...@@ -251,7 +251,7 @@ extern int lxc_cgroup_get_cpuset(const char *name, long *cpumask, ...@@ -251,7 +251,7 @@ extern int lxc_cgroup_get_cpuset(const char *name, long *cpumask,
extern int lxc_cgroup_get_cpu_usage(const char *name, long long *usage); extern int lxc_cgroup_get_cpu_usage(const char *name, long long *usage);
/* /*
* Returns a the version number of the library * Returns the version number of the library
*/ */
extern const char const *lxc_version(void); extern const char const *lxc_version(void);
......
...@@ -73,7 +73,7 @@ int main(int argc, char *argv[]) ...@@ -73,7 +73,7 @@ int main(int argc, char *argv[])
} }
if (lxc_create(name, &lxc_conf)) { if (lxc_create(name, &lxc_conf)) {
fprintf(stderr, "failed to create the container %s\n", name); fprintf(stderr, "failed to create the container '%s'\n", name);
return 1; return 1;
} }
......
...@@ -54,7 +54,7 @@ int main(int argc, char *argv[]) ...@@ -54,7 +54,7 @@ int main(int argc, char *argv[])
usage(argv[0]); usage(argv[0]);
if (lxc_destroy(name)) { if (lxc_destroy(name)) {
fprintf(stderr, "failed to destroy %s\n", name); fprintf(stderr, "failed to destroy '%s'\n", name);
return 1; return 1;
} }
......
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