From 1c1242a2edc1711a4a12c0277732e3e8bb73e8a3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A1n=20Tomko?= Date: Wed, 22 Jan 2014 13:58:26 +0100 Subject: [PATCH] Reword error message for oversized cpu time fields --- src/nodeinfo.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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;