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);
}
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;
}
usage(argv[0]);
if (lxc_destroy(name)) {
- fprintf(stderr, "failed to destroy %s\n", name);
+ fprintf(stderr, "failed to destroy '%s'\n", name);
return 1;
}