From: Chen Hanxiao Date: Wed, 9 Oct 2013 07:09:11 +0000 (+0800) Subject: cgroup: fix a comment typo in vircgroup.c X-Git-Tag: CVE-2013-4401~118 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=fc9a416df7514d9f0731984c408b79cc3bd877e6;p=thirdparty%2Flibvirt.git cgroup: fix a comment typo in vircgroup.c s/shoule/should Signed-off-by: Chen Hanxiao --- diff --git a/src/util/vircgroup.c b/src/util/vircgroup.c index e99caf5c54..91b87049ce 100644 --- a/src/util/vircgroup.c +++ b/src/util/vircgroup.c @@ -2431,7 +2431,7 @@ virCgroupGetCpuShares(virCgroupPtr group, unsigned long long *shares) int virCgroupSetCpuCfsPeriod(virCgroupPtr group, unsigned long long cfs_period) { - /* The cfs_period shoule be greater or equal than 1ms, and less or equal + /* The cfs_period should be greater or equal than 1ms, and less or equal * than 1s. */ if (cfs_period < 1000 || cfs_period > 1000000) {