From: Ján Tomko Date: Wed, 22 Jan 2014 12:58:26 +0000 (+0100) Subject: Reword error message for oversized cpu time fields X-Git-Tag: v1.2.2-rc1~215 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1c1242a2edc1711a4a12c0277732e3e8bb73e8a3;p=thirdparty%2Flibvirt.git Reword error message for oversized cpu time fields --- diff --git a/src/nodeinfo.c b/src/nodeinfo.c index 252d9b9784..6ebfb4b95d 100644 --- a/src/nodeinfo.c +++ b/src/nodeinfo.c @@ -681,7 +681,8 @@ virNodeCPUStatsAssign(virNodeCPUStatsPtr param, { if (virStrcpyStatic(param->field, name) == NULL) { virReportError(VIR_ERR_INTERNAL_ERROR, - "%s", _("Field kernel cpu time too long for destination")); + "%s", _("kernel cpu time field is too long" + " for the destination")); return -1; } param->value = value;